blob: 2e4aab7887150cf3fffccc817f974d4a070cce14 (
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
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Erich Eckner <arch at eckner dot net>
_pkgname='hardlinkedBackups'
pkgname=hardlinked-backups
pkgver=1.4.6
pkgrel=1
pkgdesc='Generate hardlinked incremental backups via rsync (and possibly through a SOCKS-tunnel via ssh)'
arch=('any')
url="https://git.eckner.net/Erich/${_pkgname}"
license=('GPL')
groups=()
depends=('rsync')
makedepends=('help2man')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=('etc/backup.conf')
options=()
source=(
"https://git.eckner.net/Erich/${_pkgname}/snapshot/${_pkgname}-${pkgver}.tar.xz"
)
sha512sums=('cd0c585bd4fe64a82d898bbf0ad6c54ff9b0f0dbcb1377e3225098ef8f69ca3aa58815165fdf5788d94e0e9bc9c596ea8b702c7a3c0dcbea898e4e0334fb8eeb')
build() {
cd ${_pkgname}-${pkgver}
make
}
package() {
cd ${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
|