wok-next diff iat/receipt @ rev 21555

updated clutter-gst (3.0.26 -> 3.0.27)
author Hans-G?nter Theisgen
date Mon Jun 22 13:46:32 2020 +0100 (2020-06-22)
parents a3c581bf52b8
children
line diff
     1.1 --- a/iat/receipt	Fri Aug 10 12:53:17 2018 +0300
     1.2 +++ b/iat/receipt	Mon Jun 22 13:46:32 2020 +0100
     1.3 @@ -1,42 +1,34 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="iat"
     1.8  VERSION="0.1.3"
     1.9  CATEGORY="utilities"
    1.10  SHORT_DESC="iat (Iso9660 Analyzer Tool) converts many types of CD-ROM \
    1.11  image file formats and converting them into ISO-9660."
    1.12 -MAINTAINER="chadi.elahmad@gmail.com"
    1.13 +MAINTAINER="devel@slitaz.org"
    1.14  LICENSE="GPL2"
    1.15 +WEB_SITE="https://sourceforge.net/projects/iat.berlios/"
    1.16 +HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
    1.17  
    1.18  TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
    1.19 -WEB_SITE="https://sourceforge.net/projects/iat.berlios/"
    1.20  WGET_URL="http://download.berlios.de/iat/$TARBALL" # FIXME
    1.21 -HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
    1.22  
    1.23 -DEPENDS=""
    1.24 -BUILD_DEPENDS=""
    1.25 -TAGS="iso CD convert"
    1.26 -
    1.27 -# Rules to configure and make the package.
    1.28 -# The src files are in a folder simply named iat.
    1.29 -compile_rules()
    1.30 -{
    1.31 +compile_rules() {
    1.32 +	# The src files are in a folder simply named iat.
    1.33  	cd $src/..
    1.34 -	if test -d $PACKAGE ; then mv -f $PACKAGE $PACKAGE-$VERSION ; fi
    1.35 +	[ -d $PACKAGE ] && mv -f $PACKAGE $PACKAGE-$VERSION
    1.36  
    1.37  	cd $src
    1.38  	./configure \
    1.39  		--prefix=/usr \
    1.40  		--mandir=/usr/share/man \
    1.41  		--infodir=/usr/share/info \
    1.42 -		$CONFIGURE_ARGS && \
    1.43 -	make && \
    1.44 -	make DESTDIR=$DESTDIR install
    1.45 +		$CONFIGURE_ARGS &&
    1.46 +	make &&
    1.47 +	make DESTDIR=$install install
    1.48  }
    1.49  
    1.50 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.51 -genpkg_rules()
    1.52 -{
    1.53 -	mkdir -p $fs/usr/bin
    1.54 -	cp -a $install/usr/bin $fs/usr
    1.55 +genpkg_rules() {
    1.56 +	copy @std
    1.57 +	TAGS="iso CD convert"
    1.58  }