wok view libdvdread/receipt @ rev 15600

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 15:25:09 2013 +0000 (2013-12-05)
parents 8c4ca972ab3c
children badfa9f9b362
line source
1 # SliTaz package receipt.
3 PACKAGE="libdvdread"
4 VERSION="4.1.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="Librairy for reading DVDs"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.mplayerhq.hu/MPlayer/releases/dvdnav/"
11 WGET_URL="${WEB_SITE}${TARBALL}"
13 BUILD_DEPENDS="libdvdcss-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 patch -Np1 -i $stuff/DVDFileStat.patch
20 ./autogen.sh $CONFIGURE_ARGS 2>&1 | grep -v /libtool &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }