wok annotate iat/receipt @ rev 21339

updated gnuradio (3.7.10.1 -> 3.7.13.4)
author Hans-G?nter Theisgen
date Sat Apr 20 11:34:23 2019 +0100 (2019-04-20)
parents 20661c276bcf
children e6a4cd87fdcb
rev   line source
pascal@1136 1 # SliTaz package receipt.
pascal@1136 2
pascal@1136 3 PACKAGE="iat"
Hans-G?nter@21040 4 VERSION="0.1.7"
pascal@1136 5 CATEGORY="utilities"
Hans-G?nter@21040 6 TAGS="ISO CD DVD convert"
Hans-G?nter@21040 7 SHORT_DESC="iat (Iso9660 Analyzer Tool) converts many types of optical disk \
Hans-G?nter@21040 8 image file formats into ISO-9660 format."
pascal@1136 9 MAINTAINER="chadi.elahmad@gmail.com"
pascal@15600 10 LICENSE="GPL2"
Hans-G?nter@21040 11 WEB_SITE="https://sourceforge.net/projects/iat.berlios/"
Hans-G?nter@21040 12 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
pascal@1136 13
Hans-G?nter@21040 14 TARBALL="$PACKAGE-$VERSION.tar.bz2"
Hans-G?nter@21040 15 WGET_URL="${WEB_SITE}files/$TARBALL"
pascal@1136 16
pascal@1136 17 DEPENDS=""
pascal@1136 18 BUILD_DEPENDS=""
pascal@1136 19
pascal@1136 20 # Rules to configure and make the package.
pascal@1136 21 # The src files are in a folder simply named iat.
pascal@1136 22 compile_rules()
pascal@1136 23 {
pascal@1136 24 cd $src/..
pascal@1136 25 if test -d $PACKAGE ; then mv -f $PACKAGE $PACKAGE-$VERSION ; fi
pascal@1136 26
pascal@1136 27 cd $src
Hans-G?nter@21040 28 ./configure \
Hans-G?nter@21040 29 --prefix=/usr \
Hans-G?nter@21040 30 --mandir=/usr/share/man \
Hans-G?nter@21040 31 --infodir=/usr/share/info \
Hans-G?nter@21040 32 $CONFIGURE_ARGS &&
Hans-G?nter@21040 33 make -j 1 &&
pascal@15600 34 make DESTDIR=$DESTDIR install
pascal@1136 35 }
pascal@1136 36
pascal@1136 37 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1136 38 genpkg_rules()
pascal@1136 39 {
pascal@1136 40 mkdir -p $fs/usr/bin
pascal@15600 41 cp -a $install/usr/bin $fs/usr
pascal@1136 42 }