wok diff raptor/receipt @ rev 8512

Added patch to fixed epdfview so mouse scrolling works.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 12 02:36:49 2011 +0000 (2011-02-12)
parents
children b137ba93894d
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/raptor/receipt	Sat Feb 12 02:36:49 2011 +0000
     1.3 @@ -0,0 +1,29 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="raptor"
     1.7 +VERSION="1.4.21"
     1.8 +CATEGORY="multimedia"
     1.9 +MAINTAINER="jozee@slitaz.org"
    1.10 +SHORT_DESC="A C library that parses RDF/XML/N-Triples into RDF triples"
    1.11 +BUILD_DEPENDS=" libxml2-dev  curl-dev  zlib-dev  openssl-dev  libxslt-dev "
    1.12 +WEB_SITE="http://librdf.org/raptor"
    1.13 +DEPENDS="libxml2 curl zlib openssl libxslt"
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 +WGET_URL="http://librdf.org/dist/source/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +
    1.19 +compile_rules() {
    1.20 +  cd $src
    1.21 +  ./configure --prefix=/usr --disable-static &&
    1.22 +  make &&
    1.23 +  make prefix=$PWD/_pkg/usr install 
    1.24 +}
    1.25 +	
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.27 +genpkg_rules()
    1.28 +{
    1.29 +	mkdir -p $fs/usr/lib 
    1.30 +	cp -a $_pkg/usr/bin $fs/usr
    1.31 +	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/	
    1.32 +}