wok annotate aufs-utils/receipt @ rev 7595

mirror-tools: add scm
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 11 12:04:25 2010 +0100 (2010-12-11)
parents 4c76c5893fda
children b1fec0a33dc3
rev   line source
pankso@4309 1 # SliTaz package receipt.
pankso@4309 2
pankso@4309 3 PACKAGE="aufs-utils"
slaxemulator@6711 4 VERSION="20101014"
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/"
pankso@4309 11
pankso@4309 12 # Rules to configure and make the package.
pankso@4309 13 compile_rules()
pankso@4309 14 {
pankso@4309 15 [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION
slaxemulator@6711 16 TARBALL=$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.gz
slaxemulator@6711 17 if [ -f $TARBALL ]; then
slaxemulator@6711 18 tar xzf $TARBALL
slaxemulator@6711 19 else
slaxemulator@6711 20 git clone http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git $PACKAGE-$VERSION
slaxemulator@6711 21 tar czf $TARBALL $PACKAGE-$VERSION
slaxemulator@6711 22 fi
slaxemulator@6711 23
pascal@4312 24 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
pankso@4309 25 cd $src
slaxemulator@6711 26 patch -p1 -R < $WOK/$PACKAGE/stuff/fix-kdir.patch
pascal@5065 27 sed -i 's/-m 644 -T/-m 644/' Makefile
slaxemulator@6793 28 make KDIR=/usr/src/linux &&
slaxemulator@6793 29 make KDIR=/usr/src/linux DESTDIR=$PWD/_pkg install
pankso@4309 30 }
pankso@4309 31
pankso@4309 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4309 33 genpkg_rules()
pankso@4309 34 {
pankso@4309 35 mkdir -p $fs/usr
pankso@4309 36 cp -a $_pkg/sbin $fs
pankso@4309 37 cp -a $_pkg/usr/bin $fs/usr
pankso@4309 38 }
slaxemulator@6717 39