wok diff liblrdf/receipt @ rev 9909

liblrdf: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 17 15:26:23 2011 +0200 (2011-05-17)
parents f25ae3ab4735
children c614eb046326
line diff
     1.1 --- a/liblrdf/receipt	Tue Oct 19 05:09:20 2010 +0000
     1.2 +++ b/liblrdf/receipt	Tue May 17 15:26:23 2011 +0200
     1.3 @@ -6,19 +6,16 @@
     1.4  MAINTAINER="jozee@slitaz.org"
     1.5  SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins"
     1.6  WEB_SITE="http://sourceforge.net/projects/lrdf"
     1.7 -DEPENDS="raptor ladspa"
     1.8 -BUILD_DEPENDS="raptor-dev ladspa-dev pkg-config"
     1.9  TARBALL="${PACKAGE}-${VERSION}.tar.gz"
    1.10  WGET_URL="$SF_MIRROR/lrdf/$TARBALL"
    1.11  
    1.12 +DEPENDS="raptor ladspa libcurl"
    1.13 +BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev"
    1.14  
    1.15  # Rules to configure and make the package.
    1.16  
    1.17  compile_rules() {
    1.18 -  cd $src
    1.19 -   ./configure --prefix=/usr &&
    1.20 -  make &&
    1.21 -  make DESTDIR=$PWD/_pkg install 
    1.22 +   ./configure && make && make install 
    1.23  }
    1.24  	
    1.25  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 @@ -27,5 +24,4 @@
    1.27  	mkdir -p $fs/usr/lib $fs/usr/share
    1.28  	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
    1.29  	cp -a $_pkg/usr/share/ladspa $fs/usr/share
    1.30 -	
    1.31  }