wok diff attr/receipt @ rev 3747

Update: attr,acl (configure)
author Matthew Sheets <rcx@zoominternet.net>
date Thu Jul 23 14:00:31 2009 +0000 (2009-07-23)
parents 3a9a515bf97c
children d5c5a2410a9d
line diff
     1.1 --- a/attr/receipt	Thu Jul 23 13:35:50 2009 +0000
     1.2 +++ b/attr/receipt	Thu Jul 23 14:00:31 2009 +0000
     1.3 @@ -36,21 +36,19 @@
     1.4  	rm -r -f man
     1.5  	rm -r -f doc
     1.6  
     1.7 -	./configure \
     1.8 -		--prefix=/usr \
     1.9 -		$CONFIGURE_ARGS &&
    1.10 -	make &&
    1.11 +	# Configure is included in Makefile
    1.12 +	make LOCAL_CONFIGURE_OPTIONS="$CONFIGURE_ARGS" &&
    1.13  	make DESTDIR=$src/_pkg install install-lib install-dev
    1.14  }
    1.15  
    1.16  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.17  genpkg_rules()
    1.18  {
    1.19 +	mkdir -p $fs/lib
    1.20 +	cp -a $_pkg/lib/*.so* $fs/lib
    1.21 +
    1.22  	mkdir -p $fs/usr/lib
    1.23  	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.24 -	
    1.25 -	mkdir -p $fs/usr/libexec
    1.26 -	cp -a $_pkg/usr/libexec/*.so* $fs/usr/libexec
    1.27 -	
    1.28 +
    1.29  	cp -a $_pkg/usr/bin $fs/usr
    1.30  }