wok diff libassuan/receipt @ rev 9539

Add setuptools to python-webob build depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Apr 08 13:48:25 2011 +0000 (2011-04-08)
parents b084f9ed4a92
children 351453c239dd
line diff
     1.1 --- a/libassuan/receipt	Fri Sep 17 18:47:50 2010 +0000
     1.2 +++ b/libassuan/receipt	Fri Apr 08 13:48:25 2011 +0000
     1.3 @@ -9,25 +9,18 @@
     1.4  WEB_SITE="http://www.gnupg.org/"
     1.5  WGET_URL="ftp://ftp.gnupg.org/gcrypt/$PACKAGE/$TARBALL"
     1.6  DEPENDS="libgpg-error"
     1.7 -BUILD_DEPENDS="python libgpg-error-dev pkg-config"	# do not skip /usr/lib/libassuan-pth.a
     1.8 +BUILD_DEPENDS="python pkg-config"	# do not skip /usr/lib/libassuan-pth.a
     1.9  
    1.10  # Rules to configure and make the package.
    1.11  compile_rules()
    1.12  {
    1.13  	cd $src
    1.14 -	./configure \
    1.15 -		--prefix=/usr \
    1.16 -		$CONFIGURE_ARGS &&
    1.17 -	make -j 4 &&
    1.18 -	make DESTDIR=$PWD/_pkg install
    1.19 +	./configure && make && make install
    1.20  }
    1.21  
    1.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.23  genpkg_rules()
    1.24  {
    1.25 -	mkdir -p $fs/usr/share
    1.26 -	cp -a $_pkg/usr/bin $fs/usr
    1.27 -	cp -a $_pkg/usr/lib $fs/usr
    1.28 -	cp -a $_pkg/usr/include $fs/usr
    1.29 -	cp -a $_pkg/usr/share/aclocal $fs/usr/share
    1.30 +	mkdir -p $fs/usr/lib
    1.31 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.32  }