wok view aufs-utils/receipt @ rev 8703

add:: ndoutils
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Feb 17 23:12:37 2011 +0100 (2011-02-17)
parents ef4bf2fff7b9
children 7db554e81f0b
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 DEPENDS="aufs"
9 BUILD_DEPENDS="git linux-module-headers"
10 WEB_SITE="http://aufs.sourceforge.net/"
11 WGET_URL="git|http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git"
12 BRANCH="origin/aufs2.1"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
17 cd $src
18 sed -i 's/-m 644 -T/-m 644/' Makefile
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/sbin $fs
28 cp -a $_pkg/usr/bin $fs/usr
29 }