wok diff raptor/receipt @ rev 22089

updated usbids (20150331 -> 20191031)
author Hans-G?nter Theisgen
date Thu Oct 31 13:27:08 2019 +0100 (2019-10-31)
parents 408c87fa22ca
children c9bc237ebf2f
line diff
     1.1 --- a/raptor/receipt	Sat Aug 10 17:48:05 2013 +0000
     1.2 +++ b/raptor/receipt	Thu Oct 31 13:27:08 2019 +0100
     1.3 @@ -3,29 +3,35 @@
     1.4  PACKAGE="raptor"
     1.5  VERSION="2.0.8"
     1.6  CATEGORY="multimedia"
     1.7 +SHORT_DESC="A C library that parses RDF/XML/N-Triples into RDF triples."
     1.8  MAINTAINER="jozee@slitaz.org"
     1.9  LICENSE="GPL2"
    1.10 -SHORT_DESC="A C library that parses RDF/XML/N-Triples into RDF triples"
    1.11  WEB_SITE="http://librdf.org/raptor"
    1.12 +
    1.13  SOURCE="raptor2"
    1.14  TARBALL="$SOURCE-$VERSION.tar.gz"
    1.15  WGET_URL="http://librdf.org/dist/source/$TARBALL"
    1.16  
    1.17 -DEPENDS="libxml2 curl zlib openssl libxslt"
    1.18 -BUILD_DEPENDS="libxml2-dev curl-dev zlib-dev openssl-dev libxslt-dev libidn-dev"
    1.19 +DEPENDS="curl libxml2 libxslt openssl zlib"
    1.20 +BUILD_DEPENDS="curl-dev libidn-dev libxml2-dev libxslt-dev openssl-dev zlib-dev"
    1.21  
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	cd $src
    1.26 -	./configure --disable-static --with-yajl=no $CONFIGURE_ARGS &&
    1.27 -	make && make prefix=/usr install 
    1.28 +	./configure			\
    1.29 +		--disable-static	\
    1.30 +		--with-yajl=no		\
    1.31 +		$CONFIGURE_ARGS &&
    1.32 +	make &&
    1.33 +	make install prefix=/usr 
    1.34  }
    1.35  	
    1.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.37  genpkg_rules()
    1.38  {
    1.39 -	mkdir -p $fs/usr/lib $fs/usr/bin
    1.40 -	cp -a $install/usr/bin/rapper $fs/usr/bin
    1.41 -	cp -a $install/usr/lib/*so* $fs/usr/lib/	
    1.42 +	mkdir -p $fs/usr/lib
    1.43 +	mkdir -p $fs/usr/bin
    1.44 +
    1.45 +	cp -a $install/usr/bin/rapper	$fs/usr/bin
    1.46 +	cp -a $install/usr/lib/*so*	$fs/usr/lib/	
    1.47  }