blob: d0aa219a28b088df2d955cfbb902d36c279785d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: nobody@nowhere.man
pkgname=repo-sync
pkgver=0.0.1
pkgrel=1
pkgdesc="arch-like package repository synchronization timer (systemd)"
arch=(any)
url=https://nowhere.man
license=(GPL)
depends=(rsync)
source=(repo-sync.timer
repo-sync.sh)
sha256sums=(0
0)
package()
{
cd "${srcdir}"
install -Dm644 repo-sync.timer "${pkgdir}"/usr/lib/systemd/repo-sync.timer
install -Dm644 repo-sync.sh "${pkgdir}"/usr/lib/${pkgname}/repo-sync.sh
}
|