wok view btrfs-progs/receipt @ rev 12481

Rename linux-util-ng to util-linux in all packages
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 23 16:30:27 2012 +0200 (2012-04-23)
parents 7b6190568691
children 187ff4f392d8
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-uuid zlib acl"
13 TAGS="filesystem fault-tolerance"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 patch -Np1 -i $stuff/btrfs-progs-build-fixes.patch
20 make all &&
21 make DESTDIR=$PWD/_pkg prefix=/usr 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/bin $fs/usr
29 }