wok view iat/receipt @ rev 25457

Normazile https://sourceforge.net/projects web_sites
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 23 08:28:09 2022 +0000 (19 months ago)
parents 370da83187ab
children 362a5a98467f
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 # What is the latest version available today?
21 current_version()
22 {
23 wget -O - https://sourceforge.net/projects/iat.berlios/files/ 2>/dev/null | \
24 sed '/scope="row/!d;/tar/!d;s|.*/iat-||;s|.tar.*||;q'
25 }
27 # Rules to configure and make the package.
28 # The src files are in a folder simply named iat.
29 compile_rules()
30 {
31 ./configure \
32 --prefix=/usr \
33 --mandir=/usr/share/man \
34 --infodir=/usr/share/info \
35 $CONFIGURE_ARGS &&
36 make -j 1 &&
37 make DESTDIR=$DESTDIR install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/bin
44 cp -a $install/usr/bin $fs/usr
45 }