wok view fsarchiver/receipt @ rev 6435

Up: irssi-scripts to 2.0
author Julien Rabier <taziden@slitaz.org>
date Mon Sep 27 18:01:01 2010 +0000 (2010-09-27)
parents 4665397dfc68
children 3d9f3593760a
line source
1 # SliTaz package receipt.
3 PACKAGE="fsarchiver"
4 VERSION="0.6.7"
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"
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.
18 compile_rules() {
19 cd $src
20 ./configure --prefix=/usr &&
21 make &&
22 make DESTDIR="$PWD/_pkg" install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/sbin $fs/usr
31 }