mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-06 02:54:23 +02:00
30 lines
875 B
Text
30 lines
875 B
Text
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=fsarchiver
|
|
pkgver=0.8.8
|
|
pkgrel=0
|
|
pkgdesc="Safe and flexible file-system backup and deployment tool"
|
|
options="!check" # No testsuite
|
|
arch="all"
|
|
url="https://www.fsarchiver.org/"
|
|
license="GPL-2.0-or-later"
|
|
makedepends="linux-headers attr-dev bzip2-dev e2fsprogs-dev lz4-dev lzo-dev
|
|
xz-dev libgcrypt-dev zlib-dev zstd-dev"
|
|
subpackages="$pkgname-doc"
|
|
source="https://github.com/fdupoux/fsarchiver/releases/download/$pkgver/fsarchiver-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
88d29e2caf33c11f987c3bd17345fa746854c1af7ba8a2d72edc753ed12439a1dedaba5205b440d50f8d58f50b2286ef2485fff8ef11a4136549cc492ffebf22 fsarchiver-0.8.8.tar.gz
|
|
"
|