wok diff iat/receipt @ rev 1213

asterisk, zaptel: create volatile.cpio.gz
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 09 17:55:16 2008 +0000 (2008-08-09)
parents
children ef6b94d518a9
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/iat/receipt	Sat Aug 09 17:55:16 2008 +0000
     1.3 @@ -0,0 +1,41 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="iat"
     1.7 +VERSION="0.1.3"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="iat (Iso9660 Analyzer Tool) converts many types of CD-ROM 
    1.10 +image file formats and converting them into ISO-9660."
    1.11 +MAINTAINER="chadi.elahmad@gmail.com"
    1.12 +
    1.13 +TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
    1.14 +WEB_SITE="http://iat.berlios.de/"
    1.15 +WGET_URL="http://download.berlios.de/iat/$TARBALL"
    1.16 +HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
    1.17 +
    1.18 +DEPENDS=""
    1.19 +BUILD_DEPENDS=""
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +# The src files are in a folder simply named iat.
    1.23 +compile_rules()
    1.24 +{
    1.25 +	cd $src/..
    1.26 +	if test -d $PACKAGE ; then mv -f $PACKAGE $PACKAGE-$VERSION ; fi
    1.27 +
    1.28 +	cd $src
    1.29 +	./configure \
    1.30 +		--prefix=/usr \
    1.31 +		--mandir=/usr/share/man \
    1.32 +		--infodir=/usr/share/info \
    1.33 +		$CONFIGURE_ARGS
    1.34 +	make
    1.35 +	make DESTDIR=$PWD/_pkg install
    1.36 +}
    1.37 +
    1.38 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.39 +genpkg_rules()
    1.40 +{
    1.41 +	mkdir -p $fs/usr/bin
    1.42 +	cp -a $_pkg/usr/bin $fs/usr
    1.43 +}
    1.44 +