wok-next annotate btrfs-progs/receipt @ rev 15824
Up: btrfs-progs to 3.12.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Jan 24 10:09:14 2014 +0000 (2014-01-24) |
parents | 0564ee123d66 |
children | 77e2c5ffec1c |
rev | line source |
---|---|
pascal@3002 | 1 # SliTaz package receipt. |
pascal@3002 | 2 |
pascal@3002 | 3 PACKAGE="btrfs-progs" |
slaxemulator@15824 | 4 VERSION="3.12" |
pascal@3002 | 5 CATEGORY="system-tools" |
jozee@3568 | 6 SHORT_DESC="Btrfs Filesystem user space tools." |
pascal@3002 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
pankso@12483 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@12483 | 10 WEB_SITE="http://btrfs.wiki.kernel.org/" |
pankso@12483 | 11 WGET_URL="git|git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git" |
pankso@12483 | 12 TAGS="filesystem fault-tolerance" |
pankso@12483 | 13 |
pankso@12481 | 14 DEPENDS="util-linux-uuid zlib acl" |
slaxemulator@15824 | 15 BUILD_DEPENDS="util-linux-uuid-dev e2fsprogs e2fsprogs-dev zlib-dev acl-dev git" |
pascal@3002 | 16 |
pascal@3002 | 17 # Rules to configure and make the package. |
pascal@3002 | 18 compile_rules() |
pascal@3002 | 19 { |
pascal@3002 | 20 cd $src |
slaxemulator@15824 | 21 make CFLAGS="${CFLAGS}" && |
pankso@12483 | 22 make DESTDIR=$DESTDIR prefix=/usr install |
pascal@3002 | 23 } |
pascal@3002 | 24 |
pascal@3002 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3002 | 26 genpkg_rules() |
pascal@3002 | 27 { |
pascal@3002 | 28 mkdir -p $fs/usr |
pankso@12483 | 29 cp -a $install/usr/bin $fs/usr |
pankso@12483 | 30 # Split mkfs --> btrfs-mkfs |
pankso@12483 | 31 rm $fs/usr/bin/mkfs.btrfs |
pascal@3002 | 32 } |
pascal@3002 | 33 |