wok-6.x rev 24732
updated libdvdnav and libdvdnav-dev (6.0.1 -> 6.1.1)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 15 17:34:18 2022 +0100 (2022-03-15) |
parents | 95220f1f0db1 |
children | 4cfb1fddd0ad |
files | libdvdnav-dev/receipt libdvdnav/description.txt libdvdnav/receipt |
line diff
1.1 --- a/libdvdnav-dev/receipt Tue Mar 15 17:30:53 2022 +0100 1.2 +++ b/libdvdnav-dev/receipt Tue Mar 15 17:34:18 2022 +0100 1.3 @@ -1,19 +1,18 @@ 1.4 # SliTaz package receipt." 1.5 1.6 PACKAGE="libdvdnav-dev" 1.7 -VERSION="6.0.1" 1.8 +VERSION="6.1.1" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="Library for navigating a DVD - development files." 1.11 MAINTAINER="mojo@slitaz.org" 1.12 LICENSE="GPL2" 1.13 WEB_SITE="http://dvdnav.mplayerhq.hu/" 1.14 1.15 +DEPENDS="libdvdnav pkg-config" 1.16 WANTED="libdvdnav" 1.17 -DEPENDS="libdvdnav pkg-config" 1.18 1.19 genpkg_rules() 1.20 { 1.21 - mkdir -p $fs/usr/lib 1.22 - cp -a $install/usr/include $fs/usr 1.23 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.24 + cook_copy_folders include 1.25 + cook_copy_folders pkgconfig 1.26 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libdvdnav/description.txt Tue Mar 15 17:34:18 2022 +0100 2.3 @@ -0,0 +1,9 @@ 2.4 +Libdvdnav is a library that allows easy use of sophisticated DVD navigation 2.5 +features such as DVD menus, multiangle playback and even interactive DVD games. 2.6 +All this functionality is provided through a simple API which provides the 2.7 +DVD playback as a single logical stream of blocks, intermitted by special 2.8 +dvdnav events to report certain conditions. The main usage of libdvdnav is a 2.9 +loop regularly calling a function to get the next block, surrounded by 2.10 +additional calls to tell the library of user interaction. 2.11 +The whole DVD virtual machine and internal playback states are completely 2.12 +encapsulated.
3.1 --- a/libdvdnav/receipt Tue Mar 15 17:30:53 2022 +0100 3.2 +++ b/libdvdnav/receipt Tue Mar 15 17:34:18 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libdvdnav" 3.7 -VERSION="6.0.1" 3.8 +VERSION="6.1.1" 3.9 CATEGORY="system-tools" 3.10 SHORT_DESC="Library for navigating a DVD." 3.11 MAINTAINER="mojo@slitaz.org" 3.12 @@ -23,15 +23,14 @@ 3.13 # Rules to configure and make the package. 3.14 compile_rules() 3.15 { 3.16 - ./configure \ 3.17 + ./configure \ 3.18 $CONFIGURE_ARGS && 3.19 - make && 3.20 + make && 3.21 make install 3.22 } 3.23 3.24 # Rules to gen a SliTaz package suitable for Tazpkg. 3.25 genpkg_rules() 3.26 { 3.27 - mkdir -p $fs/usr/lib 3.28 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.29 + cook_copy_files *.so* 3.30 }