wok rev 2663

Add libcdio, libcdio-dev, libcdio-utils
author Rohit Joshi <jozee@slitaz.org>
date Sat Apr 18 18:03:51 2009 +0000 (2009-04-18)
parents c61688e2231d
children 56876e429dfe 6476aebd9888
files libcdio-dev/receipt libcdio-dev/stuff/libcdio_paranoia.pc libcdio-utils/receipt libcdio/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libcdio-dev/receipt	Sat Apr 18 18:03:51 2009 +0000
     1.3 @@ -0,0 +1,18 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libcdio-dev"
     1.7 +VERSION="0.80"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="libcdio devel files"
    1.10 +MAINTAINER="rj.rohit@gmail.com"
    1.11 +WANTED="libcdio"
    1.12 +WEB_SITE="http://www.gnu.org/software/libcdio/"
    1.13 +
    1.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.15 +genpkg_rules()
    1.16 +{
    1.17 +	mkdir -p $fs/usr/lib
    1.18 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    1.19 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    1.20 +	cp -a $_pkg/usr/include $fs/usr
    1.21 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libcdio-dev/stuff/libcdio_paranoia.pc	Sat Apr 18 18:03:51 2009 +0000
     2.3 @@ -0,0 +1,11 @@
     2.4 +prefix=/usr
     2.5 +exec_prefix=${prefix}
     2.6 +libdir=${exec_prefix}/lib
     2.7 +includedir=${prefix}/include
     2.8 +
     2.9 +Name: libcdio_paranoia
    2.10 +Description: Portable CD-ROM I/O library
    2.11 +Version: 0.80
    2.12 +#Requires: glib-2.0 
    2.13 +Libs: -L${libdir} -lcdio_paranoia -lm  
    2.14 +Cflags: -I${includedir}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/libcdio-utils/receipt	Sat Apr 18 18:03:51 2009 +0000
     3.3 @@ -0,0 +1,15 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="libcdio-utils"
     3.7 +VERSION="0.80"
     3.8 +CATEGORY="multimedia"
     3.9 +SHORT_DESC="Utilities supplied with libcdio"
    3.10 +MAINTAINER="rj.rohit@gmail.com"
    3.11 +WANTED="libcdio"
    3.12 +WEB_SITE="http://www.gnu.org/software/libcdio/" 
    3.13 +
    3.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.15 +genpkg_rules()
    3.16 +{
    3.17 +	cp -a $_pkg/usr/bin/ $fs/usr
    3.18 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/libcdio/receipt	Sat Apr 18 18:03:51 2009 +0000
     4.3 @@ -0,0 +1,29 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="libcdio"
     4.7 +VERSION="0.80"
     4.8 +CATEGORY="multimedia"
     4.9 +SHORT_DESC="GNU Compact Disc Input and Control Library"
    4.10 +MAINTAINER="rj.rohit@gmail.com"
    4.11 +DEPENDS="libcddb ncurses"
    4.12 +BUILD_DEPENDS="libcddb libcddb-dev ncurses-dev gcc-lib-base"
    4.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.14 +WEB_SITE="http://www.gnu.org/software/libcdio/" 
    4.15 +WGET_URL="http://ftp.gnu.org/gnu/libcdio/$TARBALL"
    4.16 +
    4.17 +# Rules to configure and make the package.
    4.18 +compile_rules()
    4.19 +{
    4.20 +	cd $src
    4.21 +	./configure --prefix=/usr --disable-vcd-info
    4.22 +	make
    4.23 +	make DESTDIR=$PWD/_pkg install
    4.24 +}
    4.25 +
    4.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.27 +genpkg_rules()
    4.28 +{
    4.29 +	mkdir -p $fs/usr/lib
    4.30 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    4.31 +
    4.32 +}