wok annotate libdvdread/receipt @ rev 17317

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents 7b3764f928eb
children eeba7ab1dffe
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@15607 13 BUILD_DEPENDS="libdvdcss-dev autoconf automake libtool"
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