wok view iat/receipt @ rev 23336

updated perl-geo-ipfree (0.5 -> 1.151940)
author Hans-G?nter Theisgen
date Tue Mar 31 07:28:40 2020 +0100 (2020-03-31)
parents 6a429746d198
children 370da83187ab
line source
1 # SliTaz package receipt.
3 PACKAGE="iat"
4 VERSION="0.1.7"
5 CATEGORY="utilities"
6 TAGS="ISO CD DVD convert"
7 SHORT_DESC="iat (Iso9660 Analyzer Tool) converts many types of optical disk \
8 image file formats into ISO-9660 format."
9 MAINTAINER="chadi.elahmad@gmail.com"
10 LICENSE="GPL2"
11 WEB_SITE="https://sourceforge.net/projects/iat.berlios/"
12 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
14 TARBALL="$PACKAGE-$VERSION.tar.bz2"
15 WGET_URL="${WEB_SITE}files/$TARBALL"
17 DEPENDS=""
18 BUILD_DEPENDS=""
20 # Rules to configure and make the package.
21 # The src files are in a folder simply named iat.
22 compile_rules()
23 {
24 ./configure \
25 --prefix=/usr \
26 --mandir=/usr/share/man \
27 --infodir=/usr/share/info \
28 $CONFIGURE_ARGS &&
29 make -j 1 &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/bin
37 cp -a $install/usr/bin $fs/usr
38 }