wok view iat/receipt @ rev 21654

updated p0f (3.01b -> 3.09b)
author Hans-G?nter Theisgen
date Fri May 31 14:51:22 2019 +0100 (2019-05-31)
parents 20661c276bcf
children e6a4cd87fdcb
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 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 -j 1 &&
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 }