wok rev 21829

updated raptor and raptor-dev (2.0.8 -> 2.0.15)
author Hans-G?nter Theisgen
date Fri Sep 13 17:14:50 2019 +0100 (2019-09-13)
parents ec8b6053414d
children e472f8c4cb53
files raptor-dev/receipt raptor/receipt
line diff
     1.1 --- a/raptor-dev/receipt	Fri Sep 13 16:57:34 2019 +0100
     1.2 +++ b/raptor-dev/receipt	Fri Sep 13 17:14:50 2019 +0100
     1.3 @@ -1,22 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="raptor-dev"
     1.7 -VERSION="2.0.8"
     1.8 +VERSION="2.0.15"
     1.9  CATEGORY="development"
    1.10  MAINTAINER="jozee@slitaz.org"
    1.11  LICENSE="GPL2"
    1.12 -SHORT_DESC="raptor devel files"
    1.13 +SHORT_DESC="raptor development files"
    1.14  WEB_SITE="http://librdf.org/raptor"
    1.15 +
    1.16  WANTED="raptor"
    1.17 -
    1.18 -DEPENDS="raptor curl-dev libxslt-dev pkg-config"
    1.19 +DEPENDS="curl-dev libxslt-dev pkg-config raptor"
    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 $fs/usr/bin
    1.25 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 -	cp -a $install/usr/include $fs/usr
    1.28 -	ln -s raptor2/raptor2.h $fs/usr/include/raptor.h
    1.29 +	mkdir -p $fs/usr/lib
    1.30 +	mkdir -p $fs/usr/bin
    1.31 +
    1.32 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.33 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.34 +	cp -a $install/usr/include		$fs/usr
    1.35 +	ln -s raptor2/raptor2.h			$fs/usr/include/raptor.h
    1.36  }
     2.1 --- a/raptor/receipt	Fri Sep 13 16:57:34 2019 +0100
     2.2 +++ b/raptor/receipt	Fri Sep 13 17:14:50 2019 +0100
     2.3 @@ -3,29 +3,35 @@
     2.4  PACKAGE="raptor"
     2.5  VERSION="2.0.8"
     2.6  CATEGORY="multimedia"
     2.7 +SHORT_DESC="A C library that parses RDF/XML/N-Triples into RDF triples."
     2.8  MAINTAINER="jozee@slitaz.org"
     2.9  LICENSE="GPL2"
    2.10 -SHORT_DESC="A C library that parses RDF/XML/N-Triples into RDF triples"
    2.11  WEB_SITE="http://librdf.org/raptor"
    2.12 +
    2.13  SOURCE="raptor2"
    2.14  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.15  WGET_URL="http://librdf.org/dist/source/$TARBALL"
    2.16  
    2.17 -DEPENDS="libxml2 curl zlib openssl libxslt"
    2.18 -BUILD_DEPENDS="libxml2-dev curl-dev zlib-dev openssl-dev libxslt-dev libidn-dev"
    2.19 +DEPENDS="curl libxml2 libxslt openssl zlib"
    2.20 +BUILD_DEPENDS="curl-dev libidn-dev libxml2-dev libxslt-dev openssl-dev zlib-dev"
    2.21  
    2.22  # Rules to configure and make the package.
    2.23  compile_rules()
    2.24  {
    2.25 -	cd $src
    2.26 -	./configure --disable-static --with-yajl=no $CONFIGURE_ARGS &&
    2.27 -	make && make prefix=/usr install 
    2.28 +	./configure			\
    2.29 +		--disable-static	\
    2.30 +		--with-yajl=no		\
    2.31 +		$CONFIGURE_ARGS &&
    2.32 +	make &&
    2.33 +	make install prefix=/usr 
    2.34  }
    2.35  	
    2.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.37  genpkg_rules()
    2.38  {
    2.39 -	mkdir -p $fs/usr/lib $fs/usr/bin
    2.40 -	cp -a $install/usr/bin/rapper $fs/usr/bin
    2.41 -	cp -a $install/usr/lib/*so* $fs/usr/lib/	
    2.42 +	mkdir -p $fs/usr/lib
    2.43 +	mkdir -p $fs/usr/bin
    2.44 +
    2.45 +	cp -a $install/usr/bin/rapper	$fs/usr/bin
    2.46 +	cp -a $install/usr/lib/*so*	$fs/usr/lib/	
    2.47  }