wok rev 2732

Add: vcdimager, vcdimager-dev, vcdimager-xmltools
author Rohit Joshi <jozee@slitaz.org>
date Fri Apr 24 07:38:33 2009 +0000 (2009-04-24)
parents 1c776cd95d41
children d6e2659ce0bc
files vcdimager-dev/receipt vcdimager-xmltools/receipt vcdimager/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/vcdimager-dev/receipt	Fri Apr 24 07:38:33 2009 +0000
     1.3 @@ -0,0 +1,19 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="vcdimager-dev"
     1.7 +VERSION="0.7.23"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="vcdimager devel files"
    1.10 +MAINTAINER="jozee@slitaz.org"
    1.11 +WANTED="vcdimager"
    1.12 +WEB_SITE="http://www.vcdimager.org/" 
    1.13 +
    1.14 +
    1.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.16 +genpkg_rules()
    1.17 +{
    1.18 +	mkdir -p $fs/usr/lib
    1.19 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    1.20 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    1.21 +	cp -a $_pkg/usr/include $fs/usr
    1.22 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/vcdimager-xmltools/receipt	Fri Apr 24 07:38:33 2009 +0000
     2.3 @@ -0,0 +1,22 @@
     2.4 +# SliTaz package receipt
     2.5 +
     2.6 +
     2.7 +PACKAGE="vcdimager-xmltools"
     2.8 +VERSION="0.7.23"
     2.9 +CATEGORY="multimedia"
    2.10 +SHORT_DESC="vcd xml and diagnostic tools from vcdimager"
    2.11 +MAINTAINER="jozee@slitaz.org"
    2.12 +DEPENDS="vcdimager"
    2.13 +WANTED="vcdimager"
    2.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.15 +WEB_SITE="http://www.vcdimager.org/" 
    2.16 +
    2.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.18 +genpkg_rules()
    2.19 +{
    2.20 +	mkdir -p $fs/usr/bin $fs/usr/lib 
    2.21 +	cp -a $_pkg/usr/bin/ $fs/usr
    2.22 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    2.23 +	rm $fs/usr/bin/vcdimager	
    2.24 +
    2.25 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/vcdimager/receipt	Fri Apr 24 07:38:33 2009 +0000
     3.3 @@ -0,0 +1,30 @@
     3.4 +# SliTaz package receipt
     3.5 +
     3.6 +PACKAGE="vcdimager"
     3.7 +VERSION="0.7.23"
     3.8 +CATEGORY="multimedia"
     3.9 +SHORT_DESC="vcd tools"
    3.10 +MAINTAINER="jozee@slitaz.org"
    3.11 +DEPENDS="libcdio libxml2 popt"
    3.12 +BUILD_DEPENDS="libcdio libcdio-dev libxml2-dev popt-dev"
    3.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.14 +WEB_SITE="http://www.vcdimager.org/" 
    3.15 +WGET_URL="ftp://ftp.gnu.org/gnu/vcdimager/$TARBALL"
    3.16 +
    3.17 +# Rules to configure and make the package.
    3.18 +compile_rules()
    3.19 +{
    3.20 +	cd $src
    3.21 +	./configure --prefix=/usr 
    3.22 +	make
    3.23 +	make DESTDIR=$PWD/_pkg install
    3.24 +}
    3.25 +
    3.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.27 +genpkg_rules()
    3.28 +{
    3.29 +	mkdir -p $fs/usr/bin
    3.30 +	cp -a $_pkg/usr/bin/vcdimager $fs/usr/bin
    3.31 +	
    3.32 +
    3.33 +}