wok-6.x annotate cookutils/receipt @ rev 16252
ARM: add: fbpanel and menu-cache
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Apr 04 00:27:13 2014 +0200 (2014-04-04) |
parents | 45ece8da80d4 |
children | 77493f088918 |
rev | line source |
---|---|
pankso@9812 | 1 # SliTaz package receipt. |
pankso@9812 | 2 |
pankso@9812 | 3 PACKAGE="cookutils" |
pankso@16019 | 4 VERSION="3.3" |
pankso@9812 | 5 CATEGORY="base-system" |
pankso@9812 | 6 SHORT_DESC="SliTaz packages builder new generation." |
pankso@9812 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15022 | 8 LICENSE="GPL3" |
pankso@9812 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@9812 | 10 WEB_SITE="http://www.slitaz.org/" |
pascal@13892 | 11 WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$VERSION.tar.gz" |
pankso@9812 | 12 TAGS="slitaz" |
pankso@12778 | 13 HOST_ARCH="i486 arm" |
pankso@9812 | 14 |
pankso@14251 | 15 DEPENDS="" |
pascal@14173 | 16 |
pankso@9812 | 17 # Rules to configure and make the package. |
pankso@9812 | 18 compile_rules() |
pankso@9812 | 19 { |
pankso@9812 | 20 cd $src |
pankso@9812 | 21 mkdir -p $DESTDIR/usr/bin $DESTDIR/etc/slitaz |
pankso@9812 | 22 make DESTDIR=$DESTDIR install |
pankso@9812 | 23 } |
pankso@9812 | 24 |
pankso@9812 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@9812 | 26 genpkg_rules() |
pankso@9812 | 27 { |
pankso@9812 | 28 mkdir -p $fs |
pankso@9812 | 29 cp -a $install/* $fs |
mojo@13856 | 30 #Symlink cooker to busybox httpd server root |
mojo@13856 | 31 cd $fs/var/www |
mojo@13856 | 32 ln -s cgi-bin/cooker |
pankso@9826 | 33 # Daemon goes in cookutils-deamon |
pankso@9826 | 34 rm -rf $fs/etc/init.d |
pankso@9812 | 35 } |
pascal@12966 | 36 |
pascal@12966 | 37 # Pre and post install commands for Tazpkg. |
pascal@12966 | 38 post_install() |
pascal@12966 | 39 { |
pascal@12966 | 40 case "$(cat $1/etc/hostname)" in |
pascal@12966 | 41 tank*) |
pascal@12966 | 42 if ! chroot $1/ tazpkg list | grep -q aufs ; then |
pascal@12966 | 43 tazpkg get-install aufs --root=$1/ |
pascal@12966 | 44 sed -i 's/LOAD_MODULES="/&aufs /' $1/etc/rcS.conf |
pascal@12966 | 45 fi ;; |
pascal@12966 | 46 esac |
pascal@12966 | 47 } |