wok rev 24730
updated libdvdcss and libdvdcss-dev (1.4.2 -> 1.4.3)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 15 17:10:03 2022 +0100 (2022-03-15) |
parents | b072bd03c2c6 |
children | 95220f1f0db1 |
files | libdvdcss-dev/receipt libdvdcss/description.txt libdvdcss/receipt |
line diff
1.1 --- a/libdvdcss-dev/receipt Tue Mar 15 16:28:57 2022 +0100 1.2 +++ b/libdvdcss-dev/receipt Tue Mar 15 17:10:03 2022 +0100 1.3 @@ -1,34 +1,17 @@ 1.4 # SliTaz package receipt." 1.5 1.6 PACKAGE="libdvdcss-dev" 1.7 -VERSION="1.4.2" 1.8 +VERSION="1.4.3" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="Read DVDs - development files." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 LICENSE="GPL2" 1.13 WEB_SITE="https://www.videolan.org/developers/libdvdcss.html" 1.14 1.15 +DEPENDS="libdvdcss pkg-config" 1.16 WANTED="libdvdcss" 1.17 -DEPENDS="libdvdcss pkg-config" 1.18 1.19 genpkg_rules() 1.20 { 1.21 - mkdir -p $fs/usr 1.22 - 1.23 - # Copying include directory, if exists 1.24 - if [ -d "$install/usr/include" ]; then 1.25 - cp -a $install/usr/include $fs/usr 1.26 - fi 1.27 - 1.28 - # Copying pkgconfig directory, if exists 1.29 - if [ -d "$install/usr/lib/pkgconfig" ]; then 1.30 - mkdir -p $fs/usr/lib/ 1.31 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.32 - fi 1.33 - 1.34 - # Copying static libraries, if exist 1.35 - if ( find $install/usr/lib -name "*.*a" > /dev/null ); then 1.36 - mkdir -p $fs/usr/lib 1.37 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.38 - fi 1.39 + get_dev_files 1.40 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libdvdcss/description.txt Tue Mar 15 17:10:03 2022 +0100 2.3 @@ -0,0 +1,2 @@ 2.4 +Libdvdcss is a simple library designed for accessing DVDs like 2.5 +a block device without having to bother about the decryption.
3.1 --- a/libdvdcss/receipt Tue Mar 15 16:28:57 2022 +0100 3.2 +++ b/libdvdcss/receipt Tue Mar 15 17:10:03 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libdvdcss" 3.7 -VERSION="1.4.2" 3.8 +VERSION="1.4.3" 3.9 CATEGORY="system-tools" 3.10 SHORT_DESC="Accessing DVDs like a block device." 3.11 MAINTAINER="erjo@slitaz.org" 3.12 @@ -21,14 +21,15 @@ 3.13 # Rules to configure and make the package. 3.14 compile_rules() 3.15 { 3.16 - ./configure --prefix=/usr $CONFIGURE_ARGS && 3.17 - make -j 1 && 3.18 - make DESTDIR=$DESTDIR install 3.19 + ./configure \ 3.20 + --prefix=/usr \ 3.21 + $CONFIGURE_ARGS && 3.22 + make && 3.23 + make install DESTDIR=$DESTDIR 3.24 } 3.25 3.26 # Rules to gen a SliTaz package suitable for Tazpkg. 3.27 genpkg_rules() 3.28 { 3.29 - mkdir -p $fs/usr/lib 3.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.31 + cook_copy_files *.so* 3.32 }