wok annotate fsarchiver/receipt @ rev 8495

Add SRC_WANTED to lighttpd-ssl.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Feb 09 18:45:20 2011 +0000 (2011-02-09)
parents 3d9f3593760a
children f88e20186ec4
rev   line source
jozee@4951 1 # SliTaz package receipt.
jozee@4951 2
jozee@4951 3 PACKAGE="fsarchiver"
slaxemulator@7838 4 VERSION="0.6.12"
jozee@4951 5 CATEGORY="utilities"
jozee@4952 6 MAINTAINER="jozee@slitaz.org"
jozee@4951 7 SHORT_DESC="A safe and flexible file-system backup and deployment tool"
pascal@5001 8 DEPENDS="bzip2 e2fsprogs lzo xz libgcrypt liblzma util-linux-ng-blkid \
pascal@5001 9 libcomerr3 zlib"
slaxemulator@7727 10 BUILD_DEPENDS="bzip2-dev e2fsprogs-dev libgcrypt-dev lzo-dev liblzma-dev util-linux-ng-blkid-dev attr-dev util-linux-ng-uuid-dev zlib-dev pkg-config"
jozee@4951 11 WEB_SITE="http://www.fsarchiver.org/"
jozee@4951 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@4951 13 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
jozee@4951 14 TAGS="compression filesystem archive backup"
jozee@4951 15
jozee@4951 16 # Rules to configure and make the package.
jozee@4951 17 compile_rules() {
slaxemulator@7727 18 cd $src
slaxemulator@7727 19 ./configure --prefix=/usr &&
slaxemulator@7727 20 make &&
slaxemulator@7727 21 make DESTDIR="$PWD/_pkg" install
jozee@4951 22 }
jozee@4951 23
jozee@4951 24 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@4951 25 genpkg_rules()
jozee@4951 26 {
jozee@4951 27 mkdir -p $fs/usr
jozee@4951 28 cp -a $_pkg/usr/sbin $fs/usr
jozee@4951 29
jozee@4951 30 }