wok view btrfs-progs/receipt @ rev 17714

inkscape: remove obsolate patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 04 10:06:37 2015 +0100 (2015-03-04)
parents d563ba755a63
children c3bdb0de80a7
line source
1 # SliTaz package receipt.
3 PACKAGE="btrfs-progs"
4 VERSION="3.12"
5 CATEGORY="system-tools"
6 SHORT_DESC="Btrfs Filesystem user space tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://btrfs.wiki.kernel.org/"
11 WGET_URL="git|git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git"
12 TAGS="filesystem fault-tolerance"
14 DEPENDS="util-linux-uuid zlib acl util-linux-blkid lzo"
15 BUILD_DEPENDS="util-linux-uuid-dev e2fsprogs e2fsprogs-dev zlib-dev acl-dev \
16 git util-linux-blkid-dev lzo-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 make CFLAGS="${CFLAGS}" &&
23 make DESTDIR=$DESTDIR prefix=/usr install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 # Split mkfs --> btrfs-mkfs
32 rm $fs/usr/bin/mkfs.btrfs
33 }