# HG changeset patch # User Hans-G?nter Theisgen # Date 1647362058 -3600 # Node ID ac0d0189006661439df7703249d1a356a91d22e2 # Parent 95220f1f0db132ddcc1e36d920c81d4c3c10d809 updated libdvdnav and libdvdnav-dev (6.0.1 -> 6.1.1) diff -r 95220f1f0db1 -r ac0d01890066 libdvdnav-dev/receipt --- a/libdvdnav-dev/receipt Tue Mar 15 17:30:53 2022 +0100 +++ b/libdvdnav-dev/receipt Tue Mar 15 17:34:18 2022 +0100 @@ -1,19 +1,18 @@ # SliTaz package receipt." PACKAGE="libdvdnav-dev" -VERSION="6.0.1" +VERSION="6.1.1" CATEGORY="system-tools" SHORT_DESC="Library for navigating a DVD - development files." MAINTAINER="mojo@slitaz.org" LICENSE="GPL2" WEB_SITE="http://dvdnav.mplayerhq.hu/" +DEPENDS="libdvdnav pkg-config" WANTED="libdvdnav" -DEPENDS="libdvdnav pkg-config" genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cook_copy_folders include + cook_copy_folders pkgconfig } diff -r 95220f1f0db1 -r ac0d01890066 libdvdnav/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libdvdnav/description.txt Tue Mar 15 17:34:18 2022 +0100 @@ -0,0 +1,9 @@ +Libdvdnav is a library that allows easy use of sophisticated DVD navigation +features such as DVD menus, multiangle playback and even interactive DVD games. +All this functionality is provided through a simple API which provides the +DVD playback as a single logical stream of blocks, intermitted by special +dvdnav events to report certain conditions. The main usage of libdvdnav is a +loop regularly calling a function to get the next block, surrounded by +additional calls to tell the library of user interaction. +The whole DVD virtual machine and internal playback states are completely +encapsulated. diff -r 95220f1f0db1 -r ac0d01890066 libdvdnav/receipt --- a/libdvdnav/receipt Tue Mar 15 17:30:53 2022 +0100 +++ b/libdvdnav/receipt Tue Mar 15 17:34:18 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libdvdnav" -VERSION="6.0.1" +VERSION="6.1.1" CATEGORY="system-tools" SHORT_DESC="Library for navigating a DVD." MAINTAINER="mojo@slitaz.org" @@ -23,15 +23,14 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ + ./configure \ $CONFIGURE_ARGS && - make && + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }