wok view tazlito/receipt @ rev 10417

texinfo: Added cook_tmp_toolchain function to fix tazwok cook-toolchain.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue May 24 08:02:26 2011 +0000 (2011-05-24)
parents 0a193bca63c3
children 956714c124e0
line source
1 # SliTaz package receipt.
3 PACKAGE="tazlito"
4 VERSION="4.0"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz Live Tool."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="lzma cdrkit"
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"
13 TAGS="slitaz"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 #
17 # Tazlito is SliTaz Live Tool. On an other GNU/Linux install
18 # can be do with : make install from the sources directory.
19 #
20 genpkg_rules()
21 {
22 mkdir -p \
23 $fs/usr/bin \
24 $fs/usr/share/doc \
25 $fs/etc/tazlito
26 cp -a $src/tazlito $fs/usr/bin
27 cp -a $src/tazlitobox $fs/usr/bin
28 cp -a $src/tazlito.conf $fs/etc/tazlito
29 cp -a $src/doc $fs/usr/share/doc/tazlito
30 cp -a $src/applications $fs/usr/share
31 cp -a $src/pixmaps $fs/usr/share
32 chmod 755 $fs/usr/bin/*
33 # Declare /etc/tazlito/distro-packages.list
34 touch $fs/etc/tazlito/distro-packages.list
35 }