wok view btrfs-progs/receipt @ rev 5395

Up: btrfs-progs (0.19)
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 02 02:51:13 2010 +0000 (2010-05-02)
parents 395ec8205cff
children fa3cace8e2fa
line source
1 # SliTaz package receipt.
3 PACKAGE="btrfs-progs"
4 VERSION="0.19"
5 CATEGORY="system-tools"
6 SHORT_DESC="Btrfs Filesystem user space tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://btrfs.wiki.kernel.org/index.php/Main_Page"
10 WGET_URL="http://www.kernel.org/pub/linux/kernel/people/mason/btrfs/$TARBALL"
11 BUILD_DEPENDS="e2fsprogs-dev"
12 DEPENDS="util-linux-ng-uuid zlib"
13 TAGS="filesystem fault-tolerance"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make &&
20 make DESTDIR=$PWD/_pkg prefix=/usr install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }