wok diff libdvdread/receipt @ rev 15154

libdvdread, freetds: filter wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 16:47:48 2013 +0000 (2013-08-15)
parents 8c4ca972ab3c
children badfa9f9b362
line diff
     1.1 --- a/libdvdread/receipt	Wed Oct 12 14:20:54 2011 +0000
     1.2 +++ b/libdvdread/receipt	Thu Aug 15 16:47:48 2013 +0000
     1.3 @@ -5,23 +5,26 @@
     1.4  CATEGORY="system-tools"
     1.5  SHORT_DESC="Librairy for reading DVDs"
     1.6  MAINTAINER="erjo@slitaz.org"
     1.7 -BUILD_DEPENDS="libdvdcss-dev"
     1.8 +LICENSE="GPL2"
     1.9  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.10  WEB_SITE="http://www.mplayerhq.hu/MPlayer/releases/dvdnav/"
    1.11  WGET_URL="${WEB_SITE}${TARBALL}"
    1.12  
    1.13 +BUILD_DEPENDS="libdvdcss-dev"
    1.14 +
    1.15  # Rules to configure and make the package.
    1.16  compile_rules()
    1.17  {
    1.18  	cd $src
    1.19  	patch -Np1 -i $stuff/DVDFileStat.patch
    1.20 -	./autogen.sh $CONFIGURE_ARGS && make && make install
    1.21 +	./autogen.sh $CONFIGURE_ARGS 2>&1 | grep -v /libtool &&
    1.22 +	make && make install
    1.23  }
    1.24  
    1.25  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.26  genpkg_rules()
    1.27  {
    1.28  	mkdir -p $fs/usr/lib
    1.29 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.30 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.31  }
    1.32