wok view cookutils/receipt @ rev 19015

Up cookutils (795), slitaz-icons-faenza*: fix version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 01 10:19:59 2016 +0200 (2016-04-01)
parents d2a08c67e022
children ff5fd8788cd9
line source
1 # SliTaz package receipt.
3 PACKAGE="cookutils"
4 VERSION="795"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz packages builder new generation."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.slitaz.org/"
11 WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$VERSION.tar.gz"
12 TAGS="slitaz"
13 HOST_ARCH="i486 arm"
15 DEPENDS="sdft"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir -p $DESTDIR/usr/bin $DESTDIR/etc/slitaz
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs
28 cp -a $install/* $fs
29 #Symlink cooker to busybox httpd server root
30 cd $fs/var/www
31 ln -s cgi-bin/cooker
32 # Daemon goes in cookutils-deamon
33 rm -rf $fs/etc/init.d
34 }
36 # Pre and post install commands for Tazpkg.
37 post_install()
38 {
39 case "$(cat "$1/etc/hostname" 2> /dev/null)" in
40 tank*)
41 if ! chroot "$1/" tazpkg list | grep -q aufs ; then
42 tazpkg get-install aufs --root="$1/"
43 sed -i 's/LOAD_MODULES="/&aufs /' "$1/etc/rcS.conf"
44 fi ;;
45 esac
46 }