wok view tazlito/receipt @ rev 2410

Removed PyXML --> use pyxml already present
author Christophe Lincoln <pankso@slitaz.org>
date Tue Mar 10 11:34:05 2009 +0100 (2009-03-10)
parents ef142acb45e8
children 8e7bc23c7eeb
line source
1 # SliTaz package receipt.
3 PACKAGE="tazlito"
4 VERSION="1.9"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz Live Tool."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="lzma"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.slitaz.org/"
11 WGET_URL="http://mirror.slitaz.org/sources/tazlito/$TARBALL"
12 CONFIG_FILES="/etc/tazlito/distro-packages.list"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 #
16 # Tazlito is SliTaz Live Tool. On an other GNU/Linux install
17 # can be do with : make install from the sources directory.
18 #
19 genpkg_rules()
20 {
21 mkdir -p \
22 $fs/usr/bin \
23 $fs/usr/share/doc \
24 $fs/etc/tazlito
25 cp -a $src/tazlito $fs/usr/bin
26 cp -a $src/tazlitobox $fs/usr/bin
27 cp -a $src/tazlito.conf $fs/etc/tazlito
28 cp -a $src/doc $fs/usr/share/doc/tazlito
29 cp -a $src/applications $fs/usr/share
30 cp -a $src/pixmaps $fs/usr/share
31 chmod 755 $fs/usr/bin/*
32 # Declare /etc/tazlito/distro-packages.list
33 touch $fs/etc/tazlito/distro-packages.list
34 }