wok view tazwok/receipt @ rev 10675

iptables: fix kvers
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 27 11:09:25 2011 +0200 (2011-05-27)
parents cf670157f16f
children 82b6dbfd8ce1
line source
1 # SliTaz package receipt.
3 PACKAGE="tazwok"
4 VERSION="4.2.15"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz sources and binaries packages cooker."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 DEPENDS="busybox libtaz"
10 SUGGESTED="tazchroot"
11 WEB_SITE="http://www.slitaz.org/"
12 WGET_URL="http://hg.slitaz.org/tazwok/archive/$VERSION.tar.bz2"
13 TAGS="slitaz"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/bin $fs/usr/share/doc/tazwok \
19 $fs/etc/slitaz $fs/usr/share/slitaz/web-bb \
20 $fs/usr/lib/slitaz/chroot-scripts
21 # Copy Tazwok, doc and examples.
22 cp -a $src/tazwok $fs/usr/bin
23 chmod 755 $fs/usr/bin/tazwok
24 cp -a $src/doc/* $fs/usr/share/doc/tazwok
25 cp -a $src/applications $fs/usr/share
26 # Config file
27 cp -a $src/examples/tazwok.conf $fs/etc/slitaz
28 cp -a $src/examples/config.site $fs/etc
29 # Webserver stuff
30 cp -a $src/web/* $fs/usr/share/slitaz/web-bb
31 # Chroot scripts
32 cp -a $src/chroot-scripts $fs/usr/lib/slitaz/chroot-scripts/tazwok
33 # Build bot for tazwok
34 cp -a $src/examples/tazbb $fs/usr/bin
35 }