wok annotate fsarchiver/receipt @ rev 4951

Add fsarchiver (backup full partition on smaller partition)
author Rohit Joshi <jozee@slitaz.org>
date Wed Feb 17 09:31:26 2010 +0000 (2010-02-17)
parents
children 4665397dfc68
rev   line source
jozee@4951 1 # SliTaz package receipt.
jozee@4951 2
jozee@4951 3 PACKAGE="fsarchiver"
jozee@4951 4 VERSION="0.6.7"
jozee@4951 5 CATEGORY="utilities"
jozee@4951 6 MAINTAINER="devel@slitaz.org"
jozee@4951 7 SHORT_DESC="A safe and flexible file-system backup and deployment tool"
jozee@4951 8 DEPENDS="bzip2 e2fsprogs lzo xz libgcrypt liblzma util-linux-ng-blkid"
jozee@4951 9 BUILD_DEPENDS=" bzip2-dev e2fsprogs-dev libgcrypt-dev lzo-dev liblzma-dev util-linux-ng-blkid-dev attr-dev"
jozee@4951 10 WEB_SITE="http://www.fsarchiver.org/"
jozee@4951 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@4951 12 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
jozee@4951 13 TAGS="compression filesystem archive backup"
jozee@4951 14
jozee@4951 15 # Rules to configure and make the package.
jozee@4951 16
jozee@4951 17 compile_rules() {
jozee@4951 18 cd $src
jozee@4951 19 ./configure --prefix=/usr &&
jozee@4951 20 make &&
jozee@4951 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 }