22 lines
589 B
Bash
22 lines
589 B
Bash
|
# Maintainer: Matthias Quintern <matthiasqui@protonmail.com>
|
||
|
pkgname=msynk
|
||
|
pkgver=1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="rsync helper that supports encryption and presets"
|
||
|
arch=('any')
|
||
|
url="https:/github.com/MatthiasQuintern/msynk"
|
||
|
license=('GPL3')
|
||
|
depends=('rsync')
|
||
|
optdepends=('mkrypt: for encryption')
|
||
|
source=(msynk.sh)
|
||
|
md5sums=(866221e5be1842d4b0de2c9f313b06cb)
|
||
|
|
||
|
package() {
|
||
|
mkdir -p "${pkgdir}/usr/bin"
|
||
|
cp "${srcdir}/msynk.sh" "${pkgdir}/usr/bin/msynk"
|
||
|
chmod +x "${pkgdir}/usr/bin/msynk"
|
||
|
|
||
|
mkdir -p "${pkgdir}/usr/share/local/man/man1/"
|
||
|
cp "msynk.1" "${pkgdir}/usr/share/local/man/man1/msynk.1"
|
||
|
}
|