wok view cookutils/receipt @ rev 18194

python-ofxparse: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jul 11 13:07:08 2015 +0200 (2015-07-11)
parents d0d24fc478cf
children e12b8d32e95b
line source
1 # SliTaz package receipt.
3 PACKAGE="cookutils"
4 VERSION="746"
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=""
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 }