summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ce217ba5d370d609b0165ce4b66b40fb4228d395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: J. Nathanael Philipp <nathanael@philipp.land>
pkgname=psync
pkgver=0.2.9
pkgrel=1
pkgdesc="Python wrapper for rsync"
arch=("any")
url="https://github.com/jnphilipp/psync"
license=("GPL3+")
makedepends=("git" "help2man")
depends=("python-lxml" "rsync")
optdepends=("python-notify2: Desktop notifications")
source=("git://github.com/jnphilipp/psync.git")
md5sums=(SKIP)

package() {
    cd "$srcdir/$pkgname"
    git checkout $pkgver
    make clean
    make install DEST_DIR=$pkgdir BASH_COMPLETION_DIR=/etc/bash_completion.d
}