# HG changeset patch # User Pascal Bellard # Date 1229525018 0 # Node ID e50c7e65f610e91e9cd97750a6a8dd2de2bdcc89 # Parent 30f92a431a9af011ef16854fbe9759ba55729d2d aufs*: use squashfs naming convention diff -r 30f92a431a9a -r e50c7e65f610 aufs-module/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aufs-module/receipt Wed Dec 17 14:43:38 2008 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="aufs-module" +VERSION="20081206" +CATEGORY="base-system" +SHORT_DESC="Stackable unification FileSystem Linux kernel module." +MAINTAINER="pascal.bellard@ads-lu.com" +WEB_SITE="http://$PACKAGE.sourceforge.net/" +WANTED="aufs" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/lib $fs +} + +# Post install/remove commands for Tazpkg. +post_install() +{ + depmod -a -b "$1/" +} + +post_remove() +{ + depmod -a +} + diff -r 30f92a431a9a -r e50c7e65f610 aufs-utils/receipt --- a/aufs-utils/receipt Wed Dec 17 11:56:35 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,15 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="aufs-utils" -VERSION="20081206" -CATEGORY="base-system" -SHORT_DESC="Stackable unification FileSystem utilities." -MAINTAINER="pascal.bellard@ads-lu.com" -WEB_SITE="http://$PACKAGE.sourceforge.net/" -WANTED="aufs" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - cp -a $_pkg/sbin $_pkg/etc $fs -} diff -r 30f92a431a9a -r e50c7e65f610 aufs/receipt --- a/aufs/receipt Wed Dec 17 11:56:35 2008 +0000 +++ b/aufs/receipt Wed Dec 17 14:43:38 2008 +0000 @@ -3,9 +3,10 @@ PACKAGE="aufs" VERSION="20081206" CATEGORY="base-system" -SHORT_DESC="Stackable unification FileSystem Linux kernel module." +SHORT_DESC="Stackable unification FileSystem utilities." MAINTAINER="pascal.bellard@ads-lu.com" WEB_SITE="http://$PACKAGE.sourceforge.net/" +DEPENDS="aufs-module" BUILD_DEPENDS="cvs" # Rules to configure and make the package. @@ -37,21 +38,9 @@ done } - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/lib $fs + cp -a $_pkg/sbin $_pkg/etc $fs } -# Post install/remove commands for Tazpkg. -post_install() -{ - depmod -a -b "$1/" -} - -post_remove() -{ - depmod -a -} -