wok view iat/receipt @ rev 21017

updated gummi again (0.6.1 -> 0.6.6)
author Hans-G?nter Theisgen
date Sun Mar 10 08:29:08 2019 +0100 (2019-03-10)
parents de49f29b101e
children 6a429746d198
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="https://sourceforge.net/projects/iat.berlios/"
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 }