wok view libdvdread/receipt @ rev 22595

updated childsplay (3.3 -> 3.4)
author Hans-G?nter Theisgen
date Tue Jan 07 17:19:08 2020 +0100 (2020-01-07)
parents eeba7ab1dffe
children e5a210b88da0
line source
1 # SliTaz package receipt.
3 PACKAGE="libdvdread"
4 VERSION="6.0.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library for reading DVDs."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://dvdnav.mplayerhq.hu/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://downloads.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL"
14 BUILD_DEPENDS="libdvdcss-dev libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # patch -Np1 -i $stuff/DVDFileStat.patch
20 ./configure $CONFIGURE_ARGS &&
21 make -j 1 &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }