wok-6.x annotate 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 |
rev | line source |
---|---|
erjo@621 | 1 # SliTaz package receipt. |
erjo@621 | 2 |
erjo@621 | 3 PACKAGE="libdvdread" |
slaxemulator@10162 | 4 VERSION="4.1.3" |
erjo@621 | 5 CATEGORY="system-tools" |
erjo@621 | 6 SHORT_DESC="Librairy for reading DVDs" |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15154 | 8 LICENSE="GPL2" |
slaxemulator@10547 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slaxemulator@10162 | 10 WEB_SITE="http://www.mplayerhq.hu/MPlayer/releases/dvdnav/" |
slaxemulator@10162 | 11 WGET_URL="${WEB_SITE}${TARBALL}" |
erjo@621 | 12 |
pascal@15154 | 13 BUILD_DEPENDS="libdvdcss-dev" |
pascal@15154 | 14 |
erjo@621 | 15 # Rules to configure and make the package. |
erjo@621 | 16 compile_rules() |
erjo@621 | 17 { |
erjo@621 | 18 cd $src |
slaxemulator@10162 | 19 patch -Np1 -i $stuff/DVDFileStat.patch |
pascal@15154 | 20 ./autogen.sh $CONFIGURE_ARGS 2>&1 | grep -v /libtool && |
pascal@15154 | 21 make && make install |
erjo@621 | 22 } |
erjo@621 | 23 |
erjo@621 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@621 | 25 genpkg_rules() |
erjo@621 | 26 { |
erjo@621 | 27 mkdir -p $fs/usr/lib |
pascal@15154 | 28 cp -a $install/usr/lib/*.so* $fs/usr/lib |
erjo@621 | 29 } |
erjo@621 | 30 |