wok annotate 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
rev   line source
pankso@4309 1 # SliTaz package receipt.
pankso@4309 2
pankso@4309 3 PACKAGE="aufs-utils"
gokhlayeh@8584 4 VERSION="20110214"
pankso@4309 5 CATEGORY="system-tools"
pankso@4309 6 SHORT_DESC="The aufs utils."
pankso@4309 7 MAINTAINER="pankso@slitaz.org"
slaxemulator@7297 8 DEPENDS="aufs"
slaxemulator@6711 9 BUILD_DEPENDS="git linux-module-headers"
pankso@4309 10 WEB_SITE="http://aufs.sourceforge.net/"
gokhlayeh@8546 11 WGET_URL="git|http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git"
gokhlayeh@8584 12 BRANCH="origin/aufs2.1"
pankso@4309 13 # Rules to configure and make the package.
pankso@4309 14 compile_rules()
pankso@4309 15 {
gokhlayeh@8546 16 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
pankso@4309 17 cd $src
pascal@5065 18 sed -i 's/-m 644 -T/-m 644/' Makefile
slaxemulator@8144 19 make &&
slaxemulator@8144 20 make DESTDIR=$PWD/_pkg install
pankso@4309 21 }
pankso@4309 22
pankso@4309 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4309 24 genpkg_rules()
pankso@4309 25 {
pankso@4309 26 mkdir -p $fs/usr
pankso@4309 27 cp -a $_pkg/sbin $fs
pankso@4309 28 cp -a $_pkg/usr/bin $fs/usr
pankso@4309 29 }
slaxemulator@6717 30