wok-next view iat/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents a3c581bf52b8
children
line source
1 # SliTaz package receipt v2.
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="devel@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://sourceforge.net/projects/iat.berlios/"
11 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
13 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
14 WGET_URL="http://download.berlios.de/iat/$TARBALL" # FIXME
16 compile_rules() {
17 # The src files are in a folder simply named iat.
18 cd $src/..
19 [ -d $PACKAGE ] && mv -f $PACKAGE $PACKAGE-$VERSION
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --mandir=/usr/share/man \
25 --infodir=/usr/share/info \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$install install
29 }
31 genpkg_rules() {
32 copy @std
33 TAGS="iso CD convert"
34 }