wok view libdvdread/receipt @ rev 23916

updated nnn (3.3 -> 3.4)
author Hans-G?nter Theisgen
date Wed Aug 19 08:03:17 2020 +0100 (2020-08-19)
parents 6acb25436157
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libdvdread"
4 VERSION="6.0.2"
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
21 ./configure $CONFIGURE_ARGS &&
22 make -j 1 &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }