wok view btrfs-progs/receipt @ rev 7075

nanochess: resize to window height
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 02 20:34:30 2010 +0100 (2010-11-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 }