wok diff id3lib/receipt @ rev 19173

Up slitaz-tools (991)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 02 11:49:58 2016 +0200 (2016-06-02)
parents d1768332cee0
children ba7cbdb5749c
line diff
     1.1 --- a/id3lib/receipt	Sun May 08 09:01:58 2011 +0000
     1.2 +++ b/id3lib/receipt	Thu Jun 02 11:49:58 2016 +0200
     1.3 @@ -5,11 +5,13 @@
     1.4  CATEGORY="multimedia"
     1.5  SHORT_DESC="Library to manipulate ID3v1  and ID3v2 tags."
     1.6  MAINTAINER="pankso@slitaz.org"
     1.7 +LICENSE="GPL2"
     1.8  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.9 +WEB_SITE="http://id3lib.sourceforge.net/"
    1.10 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.11 +
    1.12  DEPENDS="zlib gcc-lib-base"
    1.13  BUILD_DEPENDS="zlib-dev"
    1.14 -WEB_SITE="http://id3lib.sourceforge.net/"
    1.15 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.16  
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19 @@ -20,14 +22,13 @@
    1.20  		--prefix=/usr \
    1.21  		$CONFIGURE_ARGS &&
    1.22  	make &&
    1.23 -	make DESTDIR=$PWD/_pkg install
    1.24 +	make DESTDIR=$DESTDIR install
    1.25  }
    1.26  
    1.27  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.28  genpkg_rules()
    1.29  {
    1.30  	mkdir -p $fs/usr/lib
    1.31 -	cp -a $_pkg/usr/bin $fs/usr
    1.32 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.33 +	cp -a $install/usr/bin $fs/usr
    1.34 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.35  }
    1.36 -