mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 07:31:35 +01:00
54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
# Contributor: Henrik Riomar <henrik.riomar@gmail.com>
|
|
# Maintainer: Henrik Riomar <henrik.riomar@gmail.com>
|
|
pkgname=safekeep
|
|
pkgver=1.5.0
|
|
pkgrel=0
|
|
pkgdesc="SafeKeep backup system"
|
|
url="https://github.com/dimipaun/safekeep"
|
|
arch="noarch"
|
|
license="GPL-2.0-or-later"
|
|
depends="openssh-client python3 rdiff-backup util-linux"
|
|
makedepends="asciidoc libxml2-utils xmlto"
|
|
install="$pkgname-server.post-install"
|
|
subpackages="$pkgname-doc $pkgname-client $pkgname-server"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/dimipaun/$pkgname/archive/$pkgver.tar.gz
|
|
"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make man
|
|
# ionice from util-linux is in /usr/bin (busybox in /bin)
|
|
sed -i 's|PATH=/sbin:/bin:/usr/sbin:/usr/bin|PATH=/sbin:/usr/sbin:/usr/bin:/bin|' safekeep.cron
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
PATH="$PATH:." make check
|
|
}
|
|
|
|
client() {
|
|
pkgdesc="SafeKeep backup system - client"
|
|
depends="$pkgname=$pkgver-r$pkgrel"
|
|
|
|
mkdir -p "$subpkgdir"
|
|
# just a meta package
|
|
}
|
|
|
|
server() {
|
|
pkgdesc="SafeKeep backup system - server"
|
|
depends="$pkgname=$pkgver-r$pkgrel"
|
|
|
|
mkdir -p "$subpkgdir"
|
|
mv "$pkgdir"/etc "$subpkgdir"/etc
|
|
mkdir "$subpkgdir"/etc/periodic
|
|
mv "$subpkgdir"/etc/cron.daily "$subpkgdir"/etc/periodic/daily
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make install DESTDIR="$pkgdir"
|
|
}
|
|
|
|
sha512sums="f08c0880ea10bab81dedb8e5601e089344e9a5655a57f0f78d940483bed42c039e62514922c05714a296214d0e7f943cb8da476ee57efc1f7095715af70b3a91 safekeep-1.5.0.tar.gz"
|