wok-next rev 15081

libhx: fix compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 13 18:00:11 2013 +0000 (2013-08-13)
parents 911259cbc4cc
children 5bfb2289a920
files libhx-dev/receipt libhx/receipt
line diff
     1.1 --- a/libhx-dev/receipt	Tue Aug 13 17:56:32 2013 +0000
     1.2 +++ b/libhx-dev/receipt	Tue Aug 13 18:00:11 2013 +0000
     1.3 @@ -5,6 +5,7 @@
     1.4  CATEGORY="development"
     1.5  SHORT_DESC="data structures and functions for scripting languages, dev files."
     1.6  MAINTAINER="pascal.bellard@slitaz.org"
     1.7 +LICENSE="LGPL3 LGPL2.1"
     1.8  SOURCE="libHX"
     1.9  WANTED="libhx"
    1.10  WEB_SITE="http://libhx.sourceforge.net/"
    1.11 @@ -13,7 +14,7 @@
    1.12  genpkg_rules()
    1.13  {
    1.14  	mkdir -p $fs/usr/lib
    1.15 -	cp -a $_pkg/usr/lib/*a $fs/usr/lib
    1.16 -	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    1.17 -	cp -a $_pkg/usr/include $fs/usr
    1.18 +	cp -a $install/usr/lib/*a $fs/usr/lib
    1.19 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.20 +	cp -a $install/usr/include $fs/usr
    1.21  }
     2.1 --- a/libhx/receipt	Tue Aug 13 17:56:32 2013 +0000
     2.2 +++ b/libhx/receipt	Tue Aug 13 18:00:11 2013 +0000
     2.3 @@ -5,6 +5,7 @@
     2.4  CATEGORY="development"
     2.5  SHORT_DESC="data structures and functions for scripting languages."
     2.6  MAINTAINER="pascal.bellard@slitaz.org"
     2.7 +LICENSE="LGPL3 LGPL2.1"
     2.8  SOURCE="libHX"
     2.9  TARBALL="$SOURCE-$VERSION.tar.bz2"
    2.10  WEB_SITE="http://$PACKAGE.sourceforge.net/"
    2.11 @@ -17,7 +18,7 @@
    2.12  compile_rules()
    2.13  {
    2.14  	cd $src
    2.15 -	sed -i 's|mktemp -u|/usr/bin/mktemp -u|g' Makefile
    2.16 +	sed -i 's|mktemp -u|/usr/bin/mktemp -u|g' Makefile*
    2.17  	./configure --prefix=/usr --infodir=/usr/share/info \
    2.18  	--sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS &&
    2.19  	make &&
    2.20 @@ -28,5 +29,5 @@
    2.21  genpkg_rules()
    2.22  {
    2.23  	mkdir -p $fs/usr/lib
    2.24 -	cp -a $_pkg/usr/lib/libHX.so* $fs/usr/lib
    2.25 +	cp -a $install/usr/lib/libHX.so* $fs/usr/lib
    2.26  }