wok diff libid3tag/receipt @ rev 16015

glib: fix cross compilation to ARM :-)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 05 03:32:36 2014 +0100 (2014-03-05)
parents 0f8dcbf8807b
children 73fb2ebfd59a
line diff
     1.1 --- a/libid3tag/receipt	Mon Apr 04 13:45:45 2011 +0000
     1.2 +++ b/libid3tag/receipt	Wed Mar 05 03:32:36 2014 +0100
     1.3 @@ -5,25 +5,27 @@
     1.4  CATEGORY="multimedia"
     1.5  SHORT_DESC="ID3 tag manipulation library."
     1.6  MAINTAINER="paul@slitaz.org"
     1.7 -DEPENDS="zlib"
     1.8 -BUILD_DEPENDS="zlib-dev"
     1.9 +LICENSE="GPL2"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://www.underbit.com/products/mad/"
    1.12  WGET_URL="http://downloads.sourceforge.net/mad/$TARBALL"
    1.13  
    1.14 +DEPENDS="zlib"
    1.15 +BUILD_DEPENDS="zlib-dev"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20  	cd $src
    1.21  	./configure --prefix=/usr $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/lib/*.so* $fs/usr/lib
    1.32 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.33  } 
    1.34