wok-next annotate iat/receipt @ rev 21111

gdbm: split to "libpkg - pkg - pkg-dev"; fix some symlinks
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jan 11 14:45:46 2019 +0200 (2019-01-11)
parents a3c581bf52b8
children
rev   line source
al@21020 1 # SliTaz package receipt v2.
pascal@1136 2
pascal@1136 3 PACKAGE="iat"
pascal@1136 4 VERSION="0.1.3"
pascal@1136 5 CATEGORY="utilities"
pascal@1309 6 SHORT_DESC="iat (Iso9660 Analyzer Tool) converts many types of CD-ROM \
pascal@1136 7 image file formats and converting them into ISO-9660."
al@21020 8 MAINTAINER="devel@slitaz.org"
pascal@15600 9 LICENSE="GPL2"
al@21020 10 WEB_SITE="https://sourceforge.net/projects/iat.berlios/"
al@21020 11 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
pascal@1136 12
pascal@1136 13 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
al@20906 14 WGET_URL="http://download.berlios.de/iat/$TARBALL" # FIXME
pascal@1136 15
al@21020 16 compile_rules() {
al@21020 17 # The src files are in a folder simply named iat.
pascal@1136 18 cd $src/..
al@21020 19 [ -d $PACKAGE ] && mv -f $PACKAGE $PACKAGE-$VERSION
pascal@1136 20
pascal@1136 21 cd $src
pascal@1136 22 ./configure \
pascal@1136 23 --prefix=/usr \
pascal@1136 24 --mandir=/usr/share/man \
pascal@1136 25 --infodir=/usr/share/info \
al@21020 26 $CONFIGURE_ARGS &&
al@21020 27 make &&
al@21020 28 make DESTDIR=$install install
pascal@1136 29 }
pascal@1136 30
al@21020 31 genpkg_rules() {
al@21020 32 copy @std
al@21020 33 TAGS="iso CD convert"
pascal@1136 34 }