wok view aufs-utils/receipt @ rev 8211

imported patch toolchain/readline.patch
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 27 00:20:50 2011 +0100 (2011-01-27)
parents dcee8fc1ce3f
children f5c01862825b
line source
1 # SliTaz package receipt.
3 PACKAGE="aufs-utils"
4 VERSION="20110124"
5 CATEGORY="system-tools"
6 SHORT_DESC="The aufs utils."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="aufs"
9 BUILD_DEPENDS="git linux-module-headers"
10 WEB_SITE="http://aufs.sourceforge.net/"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION
16 TARBALL=$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma
17 if [ -f $TARBALL ]; then
18 unlzma -c $TARBALL | tar xf -
19 else
20 git clone http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git $PACKAGE-$VERSION
21 tar cf - $PACKAGE-$VERSION | lzma e $TARBALL -si
22 cd $src && git checkout aufs2.1
23 fi
25 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
26 cd $src
27 #patch -p1 -R < $WOK/$PACKAGE/stuff/fix-kdir.patch
28 sed -i 's/-m 644 -T/-m 644/' Makefile
29 make &&
30 make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
37 cp -a $_pkg/sbin $fs
38 cp -a $_pkg/usr/bin $fs/usr
39 }