# HG changeset patch # User Christophe Lincoln # Date 1254146257 -7200 # Node ID a13008a385ae3244dc1e16e8c1b8780b0e223bad # Parent 764bcc674b9b8efc917c52c9dbe88aa2bbfbfd82 Add: aufs-utils (aufs2 utilities) diff -r 764bcc674b9b -r a13008a385ae aufs-utils/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aufs-utils/receipt Mon Sep 28 15:57:37 2009 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="aufs-utils" +VERSION="20090928" +CATEGORY="system-tools" +SHORT_DESC="The aufs utils." +MAINTAINER="pankso@slitaz.org" +DEPENDS="linux-aufs" +WEB_SITE="http://aufs.sourceforge.net/" + +# Rules to configure and make the package. +compile_rules() +{ + [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION + git clone http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git \ + $PACKAGE-$VERSION + cd $src + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/sbin $fs + cp -a $_pkg/usr/bin $fs/usr +}