blob: 06da8381d5494ae4ac42f3e6b99653ddf1608a8b (
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: vgs vldmr.lshnk@gmail.com
pkgname=rclone-bisync-service
pkgver=20251007
pkgrel=2
pkgdesc="Systemd user service wrapper over rclone bisync. Rclone bisync is command that provide two side syncronization with offline access to files."
arch=('any')
depends=('systemd' 'rclone')
source=(
'rclone-bisync@.service'
'rclone-bisync@.path'
'rclone-bisync@.timer'
'rclone-bisync-init.sh'
)
md5sums=('1dafef0b25fdfeacd0dfeabb9b1631ed'
'cb7b83ea4f208b4795e41da312e0384d'
'e1f83fdc3912c9824d6c4be4fe6c2c27'
'5607e4ff88c80b372f105bf769b271ce')
license=('MIT')
package() {
install -Dm 0644 "$srcdir/rclone-bisync@.service" "$pkgdir/usr/lib/systemd/user/rclone-bisync@.service"
install -Dm 0644 "$srcdir/rclone-bisync@.timer" "$pkgdir/usr/lib/systemd/user/rclone-bisync@.timer"
install -Dm 0644 "$srcdir/rclone-bisync@.path" "$pkgdir/usr/lib/systemd/user/rclone-bisync@.path"
install -Dm 0644 "$srcdir/rclone-bisync-init.sh" "$pkgdir/usr/bin/rclone-bisync-init.sh"
}
|