wok-next view tazwok/receipt @ rev 21481

updated airgeddon (8.12 -> 10.21)
author Hans-G?nter Theisgen
date Thu Jun 18 14:24:40 2020 +0100 (2020-06-18)
parents cd7906120828
children
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="devel@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://www.slitaz.org/"
10 REPOLOGY="-"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="http://hg.slitaz.org/tazwok/archive/$VERSION.tar.bz2"
15 genpkg_rules() {
16 mkdir -p $fs/usr/bin $fs/usr/share/doc/tazwok \
17 $fs/etc/slitaz $fs/usr/share/slitaz/web-bb \
18 $fs/usr/lib/slitaz/chroot-scripts
19 # Copy Tazwok, doc and examples.
20 cp -a $src/tazwok $fs/usr/bin
21 chmod 755 $fs/usr/bin/tazwok
22 cp -a $src/doc/* $fs/usr/share/doc/tazwok
23 cp -a $src/applications $fs/usr/share
24 # Config file
25 cp -a $src/examples/tazwok.conf $fs/etc/slitaz
26 cp -a $src/examples/config.site $fs/etc
27 # Webserver stuff
28 cp -a $src/web/* $fs/usr/share/slitaz/web-bb
29 # Chroot scripts
30 cp -a $src/chroot-scripts $fs/usr/lib/slitaz/chroot-scripts/tazwok
31 # Build bot for tazwok
32 cp -a $src/examples/tazbb $fs/usr/bin
33 DEPENDS="busybox slitaz-base-files"
34 SUGGESTED="tazchroot"
35 TAGS="slitaz"
36 }