wok annotate iat/receipt @ rev 20289

elilo: force ia32 (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 10 13:11:07 2018 +0200 (2018-04-10)
parents faa4c6e9600b
children 20661c276bcf
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@15600 9 LICENSE="GPL2"
pascal@1136 10
pascal@1136 11 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
pascal@1136 12 WEB_SITE="http://iat.berlios.de/"
pascal@1136 13 WGET_URL="http://download.berlios.de/iat/$TARBALL"
pascal@1136 14 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
pascal@1136 15
pascal@1136 16 DEPENDS=""
pascal@1136 17 BUILD_DEPENDS=""
jozee@4938 18 TAGS="iso CD convert"
pascal@1136 19
pascal@1136 20 # Rules to configure and make the package.
pascal@1136 21 # The src files are in a folder simply named iat.
pascal@1136 22 compile_rules()
pascal@1136 23 {
pascal@1136 24 cd $src/..
pascal@1136 25 if test -d $PACKAGE ; then mv -f $PACKAGE $PACKAGE-$VERSION ; fi
pascal@1136 26
pascal@1136 27 cd $src
pascal@1136 28 ./configure \
pascal@1136 29 --prefix=/usr \
pascal@1136 30 --mandir=/usr/share/man \
pascal@1136 31 --infodir=/usr/share/info \
pascal@1309 32 $CONFIGURE_ARGS && \
pascal@1309 33 make && \
pascal@15600 34 make DESTDIR=$DESTDIR install
pascal@1136 35 }
pascal@1136 36
pascal@1136 37 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1136 38 genpkg_rules()
pascal@1136 39 {
pascal@1136 40 mkdir -p $fs/usr/bin
pascal@15600 41 cp -a $install/usr/bin $fs/usr
pascal@1136 42 }