wok view fsarchiver/receipt @ rev 7982

Fix: patch two bugs in make 3.82
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Jan 17 18:24:29 2011 +0100 (2011-01-17)
parents 3d9f3593760a
children f88e20186ec4
line source
1 # SliTaz package receipt.
3 PACKAGE="fsarchiver"
4 VERSION="0.6.12"
5 CATEGORY="utilities"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A safe and flexible file-system backup and deployment tool"
8 DEPENDS="bzip2 e2fsprogs lzo xz libgcrypt liblzma util-linux-ng-blkid \
9 libcomerr3 zlib"
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"
11 WEB_SITE="http://www.fsarchiver.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
14 TAGS="compression filesystem archive backup"
16 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 ./configure --prefix=/usr &&
20 make &&
21 make DESTDIR="$PWD/_pkg" install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/sbin $fs/usr
30 }