wok view btrfs-progs/receipt @ rev 3002

Add btrfs-progs linux-btrfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 11 22:07:59 2009 +0200 (2009-05-11)
parents
children db13f65a4978
line source
1 # SliTaz package receipt.
3 PACKAGE="btrfs-progs"
4 VERSION="0.18"
5 CATEGORY="system-tools"
6 SHORT_DESC="Btrfs Filsystem 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"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make &&
18 make DESTDIR=$PWD/_pkg prefix=/usr install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr
25 cp -a $_pkg/usr/bin $fs/usr
26 }