wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="iat"
4 VERSION="0.1.3"
5 CATEGORY="utilities"
6 SHORT_DESC="iat (Iso9660 Analyzer Tool) converts many types of CD-ROM \
7 image file formats and converting them into ISO-9660."
8 MAINTAINER="chadi.elahmad@gmail.com"
9 LICENSE="GPL2"
11 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
12 WEB_SITE="http://iat.berlios.de/"
13 WGET_URL="http://download.berlios.de/iat/$TARBALL"
14 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
16 DEPENDS=""
17 BUILD_DEPENDS=""
18 TAGS="iso CD convert"
20 # Rules to configure and make the package.
21 # The src files are in a folder simply named iat.
22 compile_rules()
23 {
24 cd $src/..
25 if test -d $PACKAGE ; then mv -f $PACKAGE $PACKAGE-$VERSION ; fi
27 cd $src
28 ./configure \
29 --prefix=/usr \
30 --mandir=/usr/share/man \
31 --infodir=/usr/share/info \
32 $CONFIGURE_ARGS && \
33 make && \
34 make DESTDIR=$DESTDIR install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr/bin
41 cp -a $install/usr/bin $fs/usr
42 }