wok view fsarchiver/receipt @ rev 22570

modified recipe for bluez-alsa
author Hans-G?nter Theisgen
date Mon Jan 06 08:00:18 2020 +0100 (2020-01-06)
parents 380ffe05937a
children 0b02213fe0a1
line source
1 # SliTaz package receipt.
3 PACKAGE="fsarchiver"
4 VERSION="0.8.5"
5 CATEGORY="utilities"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="A safe and flexible file-system backup and deployment tool"
9 WEB_SITE="http://www.fsarchiver.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/fdupoux/fsarchiver/releases/download/$VERSION/$TARBALL"
12 TAGS="compression filesystem archive backup"
14 DEPENDS="bzip2 e2fsprogs lzo xz libgcrypt liblzma util-linux-blkid \
15 libcomerr3 zlib lz4-lib zstd"
16 BUILD_DEPENDS="bzip2-dev e2fsprogs-dev libgcrypt-dev lzo-dev liblzma-dev \
17 util-linux-blkid-dev attr-dev util-linux-uuid-dev zlib-dev pkg-config \
18 lz4-dev zstd-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure --prefix=/usr $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR="$DESTDIR" install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/sbin $fs/usr
34 }