blob: 35864370f241f515ea447b3e08b41f291e8bbf9b (
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
|
# Maintainer: J. Nathanael Philipp <nathanael@philipp.land>
pkgname=backup
pkgver=0.5.0
pkgrel=1
pkgdesc="Easily configure and reproducibly run complex backups"
arch=("any")
url="https://github.com/jnphilipp/backup"
license=("GPL3+")
makedepends=("git" "help2man")
depends=("python" "python-lxml")
optdepends=(
"rsync: as backup tool"
"tar: as backup tool or for snapshots"
"python-notify2: Desktop notifications"
)
source=("git+https://github.com/jnphilipp/backup.git")
md5sums=(SKIP)
package() {
cd "$srcdir/$pkgname"
git checkout $pkgver
make clean
make install DEST_DIR=$pkgdir BASH_COMPLETION_DIR=/etc/bash_completion.d
}
|