wok annotate btrfs-progs/receipt @ rev 16822
get-opera: add ru locale
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Fri Jul 11 14:56:46 2014 +0000 (2014-07-11) |
parents | d563ba755a63 |
children | c3bdb0de80a7 |
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 |
pascal@15829 | 14 DEPENDS="util-linux-uuid zlib acl util-linux-blkid lzo" |
pascal@15829 | 15 BUILD_DEPENDS="util-linux-uuid-dev e2fsprogs e2fsprogs-dev zlib-dev acl-dev \ |
pascal@15829 | 16 git util-linux-blkid-dev lzo-dev" |
pascal@3002 | 17 |
pascal@3002 | 18 # Rules to configure and make the package. |
pascal@3002 | 19 compile_rules() |
pascal@3002 | 20 { |
pascal@3002 | 21 cd $src |
slaxemulator@15824 | 22 make CFLAGS="${CFLAGS}" && |
pankso@12483 | 23 make DESTDIR=$DESTDIR prefix=/usr install |
pascal@3002 | 24 } |
pascal@3002 | 25 |
pascal@3002 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3002 | 27 genpkg_rules() |
pascal@3002 | 28 { |
pascal@3002 | 29 mkdir -p $fs/usr |
pankso@12483 | 30 cp -a $install/usr/bin $fs/usr |
pankso@12483 | 31 # Split mkfs --> btrfs-mkfs |
pankso@12483 | 32 rm $fs/usr/bin/mkfs.btrfs |
pascal@3002 | 33 } |
pascal@3002 | 34 |