wok annotate cookutils/receipt @ rev 22114

updated vnstat (1.15 -> 2.4)
author Hans-G?nter Theisgen
date Sat Nov 02 16:28:17 2019 +0100 (2019-11-02)
parents 97b8cb8c268b
children 2a588e4793bc
rev   line source
pankso@9812 1 # SliTaz package receipt.
pankso@9812 2
pankso@9812 3 PACKAGE="cookutils"
al@19823 4 VERSION="887"
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"
al@19252 9 WEB_SITE="http://www.slitaz.org/"
pankso@9812 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
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"
pascal@19787 14 CONFIG_FILES="/etc/slitaz/cook.site /etc/slitaz/cook.conf"
pankso@9812 15
al@18550 16 DEPENDS="sdft"
al@19252 17 SPLIT="cookutils-daemon"
pascal@14173 18
pankso@9812 19 # Rules to configure and make the package.
pankso@9812 20 compile_rules()
pankso@9812 21 {
pascal@20655 22 sed -i 's|\. receipt|. ./receipt|' cook
al@20666 23 patch -p1 -i $stuff/pkgdb-absolute.patch
al@20667 24 patch -p1 -i $stuff/pkgdb-no-parallel.patch
pascal@21780 25 patch -p1 -i $stuff/cook-newest.patch
pascal@21793 26 sed -i 's|preinit core-4in1|preinit core-4in1 core-5in1|' cookiso
pankso@9812 27 mkdir -p $DESTDIR/usr/bin $DESTDIR/etc/slitaz
pankso@9812 28 make DESTDIR=$DESTDIR install
pankso@9812 29 }
pankso@9812 30
pankso@9812 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@9812 32 genpkg_rules()
pankso@9812 33 {
pankso@9812 34 mkdir -p $fs
pankso@9812 35 cp -a $install/* $fs
mojo@13856 36 #Symlink cooker to busybox httpd server root
mojo@13856 37 cd $fs/var/www
mojo@13856 38 ln -s cgi-bin/cooker
al@19161 39 # Daemon goes in cookutils-daemon
pankso@9826 40 rm -rf $fs/etc/init.d
pankso@9812 41 }
pascal@12966 42
pascal@12966 43 # Pre and post install commands for Tazpkg.
pascal@12966 44 post_install()
pascal@12966 45 {
pascal@18730 46 case "$(cat "$1/etc/hostname" 2> /dev/null)" in
pascal@12966 47 tank*)
pascal@18730 48 if ! chroot "$1/" tazpkg list | grep -q aufs ; then
pascal@18730 49 tazpkg get-install aufs --root="$1/"
pascal@18730 50 sed -i 's/LOAD_MODULES="/&aufs /' "$1/etc/rcS.conf"
pascal@12966 51 fi ;;
pascal@12966 52 esac
pascal@12966 53 }