wok annotate iat/receipt @ rev 5132

tazbb: clean build wok stuff/ dir
author Christophe Lincoln <pankso@slitaz.org>
date Tue Mar 23 10:47:56 2010 +0100 (2010-03-23)
parents ef6b94d518a9
children de49f29b101e
rev   line source
pascal@1136 1 # SliTaz package receipt.
pascal@1136 2
pascal@1136 3 PACKAGE="iat"
pascal@1136 4 VERSION="0.1.3"
pascal@1136 5 CATEGORY="utilities"
pascal@1309 6 SHORT_DESC="iat (Iso9660 Analyzer Tool) converts many types of CD-ROM \
pascal@1136 7 image file formats and converting them into ISO-9660."
pascal@1136 8 MAINTAINER="chadi.elahmad@gmail.com"
pascal@1136 9
pascal@1136 10 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
pascal@1136 11 WEB_SITE="http://iat.berlios.de/"
pascal@1136 12 WGET_URL="http://download.berlios.de/iat/$TARBALL"
pascal@1136 13 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
pascal@1136 14
pascal@1136 15 DEPENDS=""
pascal@1136 16 BUILD_DEPENDS=""
jozee@4938 17 TAGS="iso CD convert"
pascal@1136 18
pascal@1136 19 # Rules to configure and make the package.
pascal@1136 20 # The src files are in a folder simply named iat.
pascal@1136 21 compile_rules()
pascal@1136 22 {
pascal@1136 23 cd $src/..
pascal@1136 24 if test -d $PACKAGE ; then mv -f $PACKAGE $PACKAGE-$VERSION ; fi
pascal@1136 25
pascal@1136 26 cd $src
pascal@1136 27 ./configure \
pascal@1136 28 --prefix=/usr \
pascal@1136 29 --mandir=/usr/share/man \
pascal@1136 30 --infodir=/usr/share/info \
pascal@1309 31 $CONFIGURE_ARGS && \
pascal@1309 32 make && \
pascal@1136 33 make DESTDIR=$PWD/_pkg install
pascal@1136 34 }
pascal@1136 35
pascal@1136 36 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1136 37 genpkg_rules()
pascal@1136 38 {
pascal@1136 39 mkdir -p $fs/usr/bin
pascal@1136 40 cp -a $_pkg/usr/bin $fs/usr
pascal@1136 41 }
pascal@1136 42