wok annotate libdvdread/receipt @ rev 24583

updated fusioninventory-agent (2.5.2 -> 2.6)
author Hans-G?nter Theisgen
date Sun Feb 27 17:43:39 2022 +0100 (2022-02-27)
parents e5a210b88da0
children 95220f1f0db1
rev   line source
erjo@621 1 # SliTaz package receipt.
erjo@621 2
erjo@621 3 PACKAGE="libdvdread"
Hans-G?nter@23022 4 VERSION="6.0.2"
erjo@621 5 CATEGORY="system-tools"
Hans-G?nter@21171 6 SHORT_DESC="Library for reading DVDs."
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@15154 8 LICENSE="GPL2"
Hans-G?nter@21171 9 WEB_SITE="http://dvdnav.mplayerhq.hu/"
Hans-G?nter@21171 10
slaxemulator@10547 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
Hans-G?nter@21171 12 WGET_URL="https://downloads.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL"
erjo@621 13
Hans-G?nter@21171 14 BUILD_DEPENDS="libdvdcss-dev libtool"
pascal@15154 15
pascal@24447 16 # What is the latest version available today?
pascal@24447 17 current_version()
pascal@24447 18 {
pascal@24447 19 wget -O - ${WGET_URL%/*} 2>/dev/null | \
pascal@24447 20 sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
pascal@24447 21 }
pascal@24447 22
erjo@621 23 # Rules to configure and make the package.
erjo@621 24 compile_rules()
erjo@621 25 {
Hans-G?nter@21171 26 # patch -Np1 -i $stuff/DVDFileStat.patch
Hans-G?nter@23022 27
Hans-G?nter@21171 28 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@21171 29 make -j 1 &&
Hans-G?nter@21171 30 make install
erjo@621 31 }
erjo@621 32
erjo@621 33 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@621 34 genpkg_rules()
erjo@621 35 {
erjo@621 36 mkdir -p $fs/usr/lib
Hans-G?nter@23022 37 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@621 38 }