wok view tazlito/receipt @ rev 1817

Add: perl-core.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Dec 05 15:24:55 2008 +0100 (2008-12-05)
parents ac38ac310385
children 0361a5872727
line source
1 # SliTaz package receipt.
3 PACKAGE="tazlito"
4 VERSION="1.8"
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://download.tuxfamily.org/slitaz/sources/tazlito/$TARBALL"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 #
15 # Tazlito is SliTaz Live Tool. On an other GNU/Linux install
16 # can be do with : make install from the sources directory.
17 #
18 genpkg_rules()
19 {
20 mkdir -p \
21 $fs/usr/bin \
22 $fs/usr/share/doc \
23 $fs/etc/tazlito
24 cp -a $src/tazlito $fs/usr/bin
25 cp -a $src/tazlitobox $fs/usr/bin
26 cp -a $src/tazlito.conf $fs/etc/tazlito
27 cp -a $src/doc $fs/usr/share/doc/tazlito
28 cp -a $src/applications $fs/usr/share
29 cp -a $src/pixmaps $fs/usr/share
30 chmod 755 $fs/usr/bin/*
31 # Declare /etc/tazlito/distro-packages.list
32 touch $fs/etc/tazlito/distro-packages.list
33 }