wok view btrfs-progs/receipt @ rev 8213

imported patch toolchain/uclibc-cross-compiler-i486.patch
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 27 00:20:50 2011 +0100 (2011-01-27)
parents 0bfc368acd0d
children ce496ecccf24
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 all convert &&
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 }