wok view aufs-utils/receipt @ rev 11814

mpd: chown fix
author Paul Issott <paul@slitaz.org>
date Sat Feb 25 17:22:11 2012 +0000 (2012-02-25)
parents 7db554e81f0b
children 5f5b3ccf6376
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 aufs"
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 }