wok-next view fsarchiver/receipt @ rev 20513

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents 0fcf48f89432
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="fsarchiver"
4 VERSION="0.6.12"
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="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="compression filesystem archive backup"
14 DEPENDS="bzip2 e2fsprogs lzo xz libgcrypt liblzma util-linux-blkid \
15 libcomerr3 zlib"
16 BUILD_DEPENDS="bzip2-dev e2fsprogs-dev libgcrypt-dev lzo-dev xz-dev \
17 util-linux-blkid-dev attr-dev util-linux-uuid-dev zlib-dev"
19 # Rules to configure and make the package.
20 compile_rules() {
21 cd $src
22 ./configure --prefix=/usr $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR="$DESTDIR" install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/sbin $fs/usr
33 }