wok view aufs-utils/receipt @ rev 10114

Up: gst-plugins-base to 0.10.34. Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 15:42:24 2011 +0000 (2011-05-20)
parents 67231cfc5475
children 7a0a615d3b4a
line source
1 # SliTaz package receipt.
3 PACKAGE="aufs-utils"
4 VERSION="20110214"
5 CATEGORY="system-tools"
6 SHORT_DESC="The aufs utils."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://aufs.sourceforge.net/"
10 WGET_URL="git|http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git"
11 BRANCH="origin/aufs2.1"
13 DEPENDS="aufs"
14 BUILD_DEPENDS="git linux-module-headers"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
20 cd $src
21 sed -i 's/-m 644 -T/-m 644/' Makefile
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/sbin $fs
31 cp -a $_pkg/usr/bin $fs/usr
32 }