wok view tazwok/receipt @ rev 9075

Up: gavl to 1.2.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Mar 04 10:28:26 2011 +0000 (2011-03-04)
parents 0702fe11a305
children 03b537619ff2
line source
1 # SliTaz package receipt.
3 PACKAGE="tazwok"
4 VERSION="4.2.4"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz sources and binaries packages cooker."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="busybox libtaz"
10 SUGGESTED="tazchroot"
11 WEB_SITE="http://www.slitaz.org/"
12 WGET_URL="http://mirror.slitaz.org/sources/tazwok/$TARBALL"
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 }