# HG changeset patch # User Hans-G?nter Theisgen # Date 1554129603 -3600 # Node ID 6acb254361577f7cdfbcccf2aaf8f3d487dde9b6 # Parent c5acfdf7d5adea43c2b690cc055e3900a4f37c35 updated libdvdread and libdvdread-dev (4.1.3 -> 6.0.1) diff -r c5acfdf7d5ad -r 6acb25436157 libdvdread-dev/receipt --- a/libdvdread-dev/receipt Mon Apr 01 15:12:18 2019 +0100 +++ b/libdvdread-dev/receipt Mon Apr 01 15:40:03 2019 +0100 @@ -1,39 +1,39 @@ # SliTaz package receipt." PACKAGE="libdvdread-dev" -VERSION="4.1.3" +VERSION="6.0.1" CATEGORY="system-tools" -SHORT_DESC="Librairy for reading DVDs dev files." +SHORT_DESC="Library for reading DVDs - development files." MAINTAINER="erjo@slitaz.org" LICENSE="GPL2" -WANTED="libdvdread" WEB_SITE="http://dvdnav.mplayerhq.hu/" +WANTED="libdvdread" DEPENDS="libdvdread pkg-config" genpkg_rules() { mkdir -p $fs/usr - # Copying include dir if existes + # Copying include directory, if exists if [ -d "$install/usr/include" ]; then - cp -a $install/usr/include $fs/usr + cp -a $install/usr/include $fs/usr fi - # Copying bin dir if existes + # Copying bin directory, if exists if [ -d "$install/usr/bin" ]; then - cp -a $install/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr fi - # Copying pkgconfig dir if existes + # Copying pkgconfig directory, if exists if [ -d "$install/usr/lib/pkgconfig" ]; then test -d $install/usr/lib/ || mkdir -p $install/usr/lib/ cp -a $install/usr/lib/pkgconfig $fs/usr/lib fi - # Copying static libs if existes + # Copying static libraries, if exist if ( find $install/usr/lib -name "*.*a" > /dev/null ); then test -d $fs/usr/lib || mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/*.*a $fs/usr/lib fi } diff -r c5acfdf7d5ad -r 6acb25436157 libdvdread/receipt --- a/libdvdread/receipt Mon Apr 01 15:12:18 2019 +0100 +++ b/libdvdread/receipt Mon Apr 01 15:40:03 2019 +0100 @@ -1,24 +1,25 @@ # SliTaz package receipt. PACKAGE="libdvdread" -VERSION="4.1.3" +VERSION="6.0.1" CATEGORY="system-tools" -SHORT_DESC="Librairy for reading DVDs" +SHORT_DESC="Library for reading DVDs." MAINTAINER="erjo@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://dvdnav.mplayerhq.hu/" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="http://dvdnav.mplayerhq.hu/" -WGET_URL="${WEB_SITE}${TARBALL}" +WGET_URL="https://downloads.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL" -BUILD_DEPENDS="libdvdcss-dev autoconf automake libtool" +BUILD_DEPENDS="libdvdcss-dev libtool" # Rules to configure and make the package. compile_rules() { - cd $src - patch -Np1 -i $stuff/DVDFileStat.patch - ./autogen.sh $CONFIGURE_ARGS 2>&1 | grep -v /libtool && - make && make install +# patch -Np1 -i $stuff/DVDFileStat.patch + ./configure $CONFIGURE_ARGS && + make -j 1 && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -27,4 +28,3 @@ mkdir -p $fs/usr/lib cp -a $install/usr/lib/*.so* $fs/usr/lib } -