wok view tazwok-experimental/receipt @ rev 7998

Add: tazwok-experimental 0.0.2 - libtaz 0.0.1 - tazchroot 0.0.1
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Jan 18 15:50:33 2011 +0100 (2011-01-18)
parents
children b50a25f5297b
line source
1 # SliTaz package receipt.
3 PACKAGE="tazwok-experimental"
4 VERSION="0.0.2"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz sources and binaries packages cooker."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 DEPENDS="busybox libtaz"
9 SUGGESTED="tazchroot"
10 #TARBALL="$PACKAGE-$VERSION.tar.gz"
11 TARBALL="$VERSION.tar.gz"
12 WEB_SITE="http://www.slitaz.org/"
13 #WGET_URL="http://mirror.slitaz.org/sources/base-files/$TARBALL"
14 # using an hg URL because tarball is not avaible at this moment
15 WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$TARBALL"
16 CONFIG_FILES="/etc/slitaz/tazwok.conf"
17 TAGS="slitaz"
19 # Rules to gen a SliTaz package suitable for Tazpkg.
20 genpkg_rules()
21 {
22 mkdir -p $fs/usr/bin $fs/usr/share/doc/tazwok \
23 $fs/etc/slitaz
24 # Copy Tazwok, doc and examples.
25 cp -a $src/tazwok $fs/usr/bin
26 chmod 755 $fs/usr/bin/tazwok
27 cp -a $src/doc/* $fs/usr/share/doc/tazwok
28 cp -a $src/applications $fs/usr/share
29 # Config file
30 cp -a $src/examples/tazwok.conf $fs/etc/slitaz
31 cp -a $src/examples/config.site $fs/etc
32 }