wok rev 12138

Up: tazlito (4.5) - New GUI and fixes
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 14 00:34:22 2012 +0100 (2012-03-14)
parents 08977d6d0fba
children c27e57e1c31e
files tazlito/receipt
line diff
     1.1 --- a/tazlito/receipt	Tue Mar 13 23:48:17 2012 +0100
     1.2 +++ b/tazlito/receipt	Wed Mar 14 00:34:22 2012 +0100
     1.3 @@ -1,35 +1,31 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="tazlito"
     1.7 -VERSION="4.4"
     1.8 +VERSION="4.5"
     1.9  CATEGORY="base-system"
    1.10  SHORT_DESC="SliTaz Live Tool."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12 -DEPENDS="lzma cdrkit"
    1.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14  WEB_SITE="http://www.slitaz.org/"
    1.15 -WGET_URL="http://hg.slitaz.org/tazlito/archive/$VERSION.tar.gz"
    1.16 +WGET_URL="http://mirror.slitaz.org/sources/tazlito/$TARBALL"
    1.17  CONFIG_FILES="/etc/tazlito/distro-packages.list"
    1.18  TAGS="slitaz"
    1.19  
    1.20 +DEPENDS="lzma cdrkit"
    1.21 +
    1.22 +# Rules to configure and make the package.
    1.23 +compile_rules()
    1.24 +{
    1.25 +	cd $src
    1.26 +	make DESTDIR=$DESTDIR install
    1.27 +}
    1.28 +
    1.29  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 -#
    1.31 -# Tazlito is SliTaz Live Tool. On an other GNU/Linux install
    1.32 -# can be do with : make install from the sources directory.
    1.33 -#
    1.34  genpkg_rules()
    1.35  {
    1.36 -	mkdir -p \
    1.37 -		$fs/usr/bin \
    1.38 -		$fs/usr/share/doc \
    1.39 -		$fs/etc/tazlito
    1.40 -	cp -a $src/tazlito $fs/usr/bin
    1.41 -	cp -a $src/tazlitobox $fs/usr/bin
    1.42 -	cp -a $src/tazlito.conf $fs/etc/tazlito
    1.43 -	cp -a $src/doc $fs/usr/share/doc/tazlito
    1.44 -	cp -a $src/applications $fs/usr/share
    1.45 -	cp -a $src/pixmaps $fs/usr/share
    1.46 -	chmod 755 $fs/usr/bin/*
    1.47 +	mkdir -p $fs
    1.48 +	cp -a $install/* $fs
    1.49 +	chown -R root.root $fs
    1.50  	# Declare /etc/tazlito/distro-packages.list
    1.51  	touch $fs/etc/tazlito/distro-packages.list
    1.52  }