wok view tazwok/receipt @ rev 19022

Up slitaz-boot-scripts (427), tazpkg (904), tazwok (557)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 01 11:32:41 2016 +0200 (2016-04-01)
parents 9689f1b75619
children 1eac19b43f27
line source
1 # SliTaz package receipt.
3 PACKAGE="tazwok"
4 VERSION="557"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz sources and binaries packages cooker."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
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 DEPENDS="busybox slitaz-base-files"
17 # Rules to gen a SliTaz package suitable for Tazpkg.
18 genpkg_rules()
19 {
20 mkdir -p $fs/usr/bin $fs/usr/share/doc/tazwok \
21 $fs/etc/slitaz $fs/usr/share/slitaz/web-bb \
22 $fs/usr/lib/slitaz/chroot-scripts
23 # Copy Tazwok, doc and examples.
24 cp -a $src/tazwok $fs/usr/bin
25 chmod 755 $fs/usr/bin/tazwok
26 cp -a $src/doc/* $fs/usr/share/doc/tazwok
27 cp -a $src/applications $fs/usr/share
28 # Config file
29 cp -a $src/examples/tazwok.conf $fs/etc/slitaz
30 cp -a $src/examples/config.site $fs/etc
31 # Webserver stuff
32 cp -a $src/web/* $fs/usr/share/slitaz/web-bb
33 # Chroot scripts
34 cp -a $src/chroot-scripts $fs/usr/lib/slitaz/chroot-scripts/tazwok
35 # Build bot for tazwok
36 cp -a $src/examples/tazbb $fs/usr/bin
37 }