wok view tazwok/receipt @ rev 71

Removed meta pkg xorg-proto (xorg-dev-proto do the job)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 25 17:16:56 2007 +0100 (2007-12-25)
parents
children 485002daf01b
line source
1 # SliTaz package receipt.
3 PACKAGE="tazwok"
4 VERSION="1.2"
5 CATEGORY="extra"
6 SHORT_DESC="SliTaz sources and binaries packages cooker."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="cpio"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.slitaz.org/"
11 WGET_URL="http://download.tuxfamily.org/slitaz/sources/tazwok/$TARBALL"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr/bin $fs/usr/share/examples/tazwok \
17 $fs/usr/share/doc/tazwok $fs/etc
18 # Copy Tazwok, doc and examples.
19 #
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/examples/* $fs/usr/share/examples/tazwok
24 rm $fs/usr/share/examples/tazwok/build-world.sh
25 # Config file
26 cp -a $src/examples/tazwok.conf $fs/etc
27 }