# HG changeset patch # User Hans-G?nter Theisgen # Date 1647360603 -3600 # Node ID 181317ae7e78fb61c146343ba64eccaadee58b8e # Parent b072bd03c2c609fd341fb2dd90a44549a403feea updated libdvdcss and libdvdcss-dev (1.4.2 -> 1.4.3) diff -r b072bd03c2c6 -r 181317ae7e78 libdvdcss-dev/receipt --- a/libdvdcss-dev/receipt Tue Mar 15 16:28:57 2022 +0100 +++ b/libdvdcss-dev/receipt Tue Mar 15 17:10:03 2022 +0100 @@ -1,34 +1,17 @@ # SliTaz package receipt." PACKAGE="libdvdcss-dev" -VERSION="1.4.2" +VERSION="1.4.3" CATEGORY="system-tools" SHORT_DESC="Read DVDs - development files." MAINTAINER="erjo@slitaz.org" LICENSE="GPL2" WEB_SITE="https://www.videolan.org/developers/libdvdcss.html" +DEPENDS="libdvdcss pkg-config" WANTED="libdvdcss" -DEPENDS="libdvdcss pkg-config" genpkg_rules() { - mkdir -p $fs/usr - - # Copying include directory, if exists - if [ -d "$install/usr/include" ]; then - cp -a $install/usr/include $fs/usr - fi - - # Copying pkgconfig directory, if exists - if [ -d "$install/usr/lib/pkgconfig" ]; then - mkdir -p $fs/usr/lib/ - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - fi - - # Copying static libraries, if exist - if ( find $install/usr/lib -name "*.*a" > /dev/null ); then - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - fi + get_dev_files } diff -r b072bd03c2c6 -r 181317ae7e78 libdvdcss/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libdvdcss/description.txt Tue Mar 15 17:10:03 2022 +0100 @@ -0,0 +1,2 @@ +Libdvdcss is a simple library designed for accessing DVDs like +a block device without having to bother about the decryption. diff -r b072bd03c2c6 -r 181317ae7e78 libdvdcss/receipt --- a/libdvdcss/receipt Tue Mar 15 16:28:57 2022 +0100 +++ b/libdvdcss/receipt Tue Mar 15 17:10:03 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libdvdcss" -VERSION="1.4.2" +VERSION="1.4.3" CATEGORY="system-tools" SHORT_DESC="Accessing DVDs like a block device." MAINTAINER="erjo@slitaz.org" @@ -21,14 +21,15 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR install + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make install DESTDIR=$DESTDIR } # 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* }