wok rev 9659

make: fix receipt
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 01 08:10:43 2011 +0200 (2011-05-01)
parents 5fbf13b1df6d
children c852ac535cda
files make/receipt
line diff
     1.1 --- a/make/receipt	Sat Apr 30 22:04:35 2011 +0200
     1.2 +++ b/make/receipt	Sun May 01 08:10:43 2011 +0200
     1.3 @@ -15,19 +15,16 @@
     1.4  compile_rules()
     1.5  {
     1.6  	cd $src
     1.7 -
     1.8  	# http://savannah.gnu.org/bugs/?30612
     1.9 -	patch -Np1 -i ../stuff/bug30612.patch
    1.10 +	patch -Np1 -i $stuff/bug30612.patch
    1.11  	# http://savannah.gnu.org/bugs/?30723
    1.12 -	patch -Np1 -i ../stuff/bug30723.patch
    1.13 -
    1.14 -	./configure && make && make check && make install
    1.15 +	patch -Np1 -i $stuff/bug30723.patch
    1.16 +	./configure $CONFIGURE_ARGS && make && make install
    1.17  }
    1.18  
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22 -	mkdir -p $fs/usr/share/locale
    1.23 +	mkdir -p $fs/usr
    1.24  	cp -a $_pkg/usr/bin $fs/usr
    1.25 -	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    1.26  }