wok-current rev 21170

updated libdvdcss and libdvdcss-dev (1.2.12 -> 1.4.2)
author Hans-G?nter Theisgen
date Mon Apr 01 15:12:18 2019 +0100 (2019-04-01)
parents 5e220c8b5afe
children 6acb25436157
files libdvdcss-dev/receipt libdvdcss/receipt
line diff
     1.1 --- a/libdvdcss-dev/receipt	Mon Apr 01 14:48:43 2019 +0100
     1.2 +++ b/libdvdcss-dev/receipt	Mon Apr 01 15:12:18 2019 +0100
     1.3 @@ -1,34 +1,34 @@
     1.4  # SliTaz package receipt."
     1.5  
     1.6  PACKAGE="libdvdcss-dev"
     1.7 -VERSION="1.2.12"
     1.8 +VERSION="1.4.2"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="Read DVDs dev files."
    1.11 +SHORT_DESC="Read DVDs - development files."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="https://www.videolan.org/developers/libdvdcss.html"
    1.15 +
    1.16  WANTED="libdvdcss"
    1.17 -WEB_SITE="http://www.videolan.org/developers/libdvdcss.html"
    1.18 -
    1.19  DEPENDS="libdvdcss pkg-config"
    1.20  
    1.21  genpkg_rules()
    1.22  {
    1.23  	mkdir -p $fs/usr
    1.24  	
    1.25 -	# Copying include dir if existes
    1.26 +	# Copying include directory, if exists
    1.27  	if [ -d "$install/usr/include" ]; then
    1.28 -		cp -a $install/usr/include $fs/usr
    1.29 +		cp -a $install/usr/include	$fs/usr
    1.30  	fi
    1.31  	
    1.32 -	# Copying pkgconfig dir if existes
    1.33 +	# Copying pkgconfig directory, if exists
    1.34  	if [ -d "$install/usr/lib/pkgconfig" ]; then
    1.35  		mkdir -p $fs/usr/lib/
    1.36  		cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.37  	fi
    1.38  	
    1.39 -	# Copying static libs if existes
    1.40 +	# Copying static libraries, if exist
    1.41  	if ( find $install/usr/lib -name "*.*a" > /dev/null ); then
    1.42  		mkdir -p $fs/usr/lib
    1.43 -		cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.44 +		cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.45  	fi
    1.46  }
     2.1 --- a/libdvdcss/receipt	Mon Apr 01 14:48:43 2019 +0100
     2.2 +++ b/libdvdcss/receipt	Mon Apr 01 15:12:18 2019 +0100
     2.3 @@ -1,21 +1,21 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libdvdcss"
     2.7 -VERSION="1.2.12"
     2.8 +VERSION="1.4.2"
     2.9  CATEGORY="system-tools"
    2.10  SHORT_DESC="Accessing DVDs like a block device."
    2.11  MAINTAINER="erjo@slitaz.org"
    2.12  LICENSE="GPL2"
    2.13 +WEB_SITE="https://www.videolan.org/developers/libdvdcss.html"
    2.14 +
    2.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.16 -WEB_SITE="http://www.videolan.org/developers/libdvdcss.html"
    2.17 -WGET_URL="http://download.videolan.org/pub/videolan/libdvdcss/$VERSION/$TARBALL"
    2.18 +WGET_URL="https://download.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL"
    2.19  
    2.20  # Rules to configure and make the package.
    2.21  compile_rules()
    2.22  {
    2.23 -	cd $src
    2.24 -	./configure --prefix=/usr $CONFIGURE_ARGS
    2.25 -	make
    2.26 +	./configure --prefix=/usr $CONFIGURE_ARGS &&
    2.27 +	make -j 1 &&
    2.28  	make DESTDIR=$DESTDIR install
    2.29  }
    2.30  
    2.31 @@ -25,4 +25,3 @@
    2.32  	mkdir -p $fs/usr/lib
    2.33  	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.34  }
    2.35 -