wok-6.x annotate cookutils/receipt @ rev 13505
Up: iptables (1.14.16.2)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Oct 13 22:09:46 2012 +0200 (2012-10-13) |
parents | 7449759b1941 |
children | 22d2275b30ec |
rev | line source |
---|---|
pankso@9812 | 1 # SliTaz package receipt. |
pankso@9812 | 2 |
pankso@9812 | 3 PACKAGE="cookutils" |
pankso@12777 | 4 VERSION="2.0" |
pankso@9812 | 5 CATEGORY="base-system" |
pankso@9812 | 6 SHORT_DESC="SliTaz packages builder new generation." |
pankso@9812 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@9812 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@9812 | 9 WEB_SITE="http://www.slitaz.org/" |
pankso@9812 | 10 WGET_URL="http://mirror.slitaz.org/sources/$PACKAGE/$TARBALL" |
pankso@9812 | 11 TAGS="slitaz" |
pankso@12778 | 12 HOST_ARCH="i486 arm" |
pankso@9812 | 13 |
pankso@9812 | 14 # Rules to configure and make the package. |
pankso@9812 | 15 compile_rules() |
pankso@9812 | 16 { |
pankso@9812 | 17 cd $src |
pankso@9812 | 18 mkdir -p $DESTDIR/usr/bin $DESTDIR/etc/slitaz |
pankso@9812 | 19 make DESTDIR=$DESTDIR install |
pankso@9812 | 20 } |
pankso@9812 | 21 |
pankso@9812 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@9812 | 23 genpkg_rules() |
pankso@9812 | 24 { |
pankso@9812 | 25 mkdir -p $fs |
pankso@9812 | 26 cp -a $install/* $fs |
pankso@9826 | 27 # Daemon goes in cookutils-deamon |
pankso@9826 | 28 rm -rf $fs/etc/init.d |
pankso@9812 | 29 } |
pascal@12966 | 30 |
pascal@12966 | 31 # Pre and post install commands for Tazpkg. |
pascal@12966 | 32 post_install() |
pascal@12966 | 33 { |
pascal@12966 | 34 case "$(cat $1/etc/hostname)" in |
pascal@12966 | 35 tank*) |
pascal@12966 | 36 if ! chroot $1/ tazpkg list | grep -q aufs ; then |
pascal@12966 | 37 tazpkg get-install aufs --root=$1/ |
pascal@12966 | 38 sed -i 's/LOAD_MODULES="/&aufs /' $1/etc/rcS.conf |
pascal@12966 | 39 fi ;; |
pascal@12966 | 40 esac |
pascal@12966 | 41 } |