wok view btrfs-progs/receipt @ rev 4050

Add: util-linux-ng-uuid (provide *uuid* utility and libs)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Sep 09 21:36:26 2009 +0200 (2009-09-09)
parents db13f65a4978
children 0588160a6878
line source
1 # SliTaz package receipt.
3 PACKAGE="btrfs-progs"
4 VERSION="0.18"
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="libuuid"
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 }