wok rev 21155

updated libcdio, libcdio-dev, and libcdio-utils (0.83 -> 2.0.0)
author Hans-G?nter Theisgen
date Sat Mar 30 15:57:49 2019 +0100 (2019-03-30)
parents 43187d86cff3
children 9717b08dd673
files libcdio-dev/receipt libcdio-utils/receipt libcdio/receipt
line diff
     1.1 --- a/libcdio-dev/receipt	Sat Mar 30 15:28:23 2019 +0100
     1.2 +++ b/libcdio-dev/receipt	Sat Mar 30 15:57:49 2019 +0100
     1.3 @@ -1,21 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libcdio-dev"
     1.7 -VERSION="0.83"
     1.8 +VERSION="2.0.0"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="GNU Compact Disc Input and Control Library"
    1.11 +SHORT_DESC="GNU Compact Disk Input and Control Library - development files."
    1.12  MAINTAINER="rj.rohit@gmail.com"
    1.13  LICENSE="GPL3"
    1.14 +WEB_SITE="https://www.gnu.org/software/libcdio/"
    1.15 +
    1.16  WANTED="libcdio"
    1.17 -WEB_SITE="http://www.gnu.org/software/libcdio/"
    1.18 -
    1.19  DEPENDS="libcdio pkg-config"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib/pkgconfig
    1.25 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.26 -	cp -a $install/usr/include $fs/usr
    1.27 +
    1.28 +	cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.29 +	cp -a $install/usr/include	$fs/usr
    1.30 +
    1.31  	find $src -name '*.pc' -exec cp -a {} $fs/usr/lib/pkgconfig \;
    1.32  }
     2.1 --- a/libcdio-utils/receipt	Sat Mar 30 15:28:23 2019 +0100
     2.2 +++ b/libcdio-utils/receipt	Sat Mar 30 15:57:49 2019 +0100
     2.3 @@ -1,14 +1,15 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libcdio-utils"
     2.7 -VERSION="0.83"
     2.8 +VERSION="2.0.0"
     2.9  CATEGORY="multimedia"
    2.10 -SHORT_DESC="Utilities supplied with libcdio"
    2.11 +SHORT_DESC="Utilities supplied with libcdio."
    2.12  DEPENDS="libcddb libcdio ncurses"
    2.13  MAINTAINER="rj.rohit@gmail.com"
    2.14  LICENSE="GPL3"
    2.15 +WEB_SITE="https://www.gnu.org/software/libcdio/" 
    2.16 +
    2.17  WANTED="libcdio"
    2.18 -WEB_SITE="http://www.gnu.org/software/libcdio/" 
    2.19  
    2.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.21  genpkg_rules()
     3.1 --- a/libcdio/receipt	Sat Mar 30 15:28:23 2019 +0100
     3.2 +++ b/libcdio/receipt	Sat Mar 30 15:57:49 2019 +0100
     3.3 @@ -1,17 +1,18 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libcdio"
     3.7 -VERSION="0.83"
     3.8 +VERSION="2.0.0"
     3.9  CATEGORY="multimedia"
    3.10 -SHORT_DESC="GNU Compact Disc Input and Control Library"
    3.11 +SHORT_DESC="GNU Compact Disk Input and Control Library."
    3.12  MAINTAINER="rj.rohit@gmail.com"
    3.13  LICENSE="GPL3"
    3.14 +WEB_SITE="https://www.gnu.org/software/libcdio/" 
    3.15 +
    3.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.17 -WEB_SITE="http://www.gnu.org/software/libcdio/" 
    3.18  WGET_URL="http://ftp.gnu.org/gnu/libcdio/$TARBALL"
    3.19  
    3.20 -DEPENDS="libcddb ncurses gcc-lib-base"
    3.21 -BUILD_DEPENDS="libcddb libcddb-dev ncurses-dev gcc-lib-base"
    3.22 +DEPENDS="gcc-lib-base libcddb ncurses"
    3.23 +BUILD_DEPENDS="gcc-lib-base libcddb libcddb-dev ncurses-dev"
    3.24  
    3.25  # Rules to configure and make the package.
    3.26  compile_rules()
    3.27 @@ -20,9 +21,12 @@
    3.28  	grep -qs 'define u8' lib/driver/gnu_linux.c ||
    3.29  	sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' \
    3.30  		lib/driver/gnu_linux.c
    3.31 -	./configure --prefix=/usr --disable-vcd-info \
    3.32 +
    3.33 +	./configure			\
    3.34 +		--prefix=/usr		\
    3.35 +		--disable-vcd-info	\
    3.36  		$CONFIGURE_ARGS &&
    3.37 -	make &&
    3.38 +	make -j 1 &&
    3.39  	make DESTDIR=$DESTDIR install
    3.40  }
    3.41