wok-6.x diff libconfuse/receipt @ rev 17105
Add qps
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Sat Aug 30 23:57:51 2014 +0200 (2014-08-30) |
parents | 873c4ae3f6db |
children | 5a22e9bbefe0 |
line diff
1.1 --- a/libconfuse/receipt Thu Oct 07 23:57:24 2010 +0000 1.2 +++ b/libconfuse/receipt Sat Aug 30 23:57:51 2014 +0200 1.3 @@ -6,11 +6,13 @@ 1.4 CATEGORY="misc" 1.5 SHORT_DESC="Configuration file parser library." 1.6 MAINTAINER="mallory@sweetpeople.org" 1.7 -DEPENDS="" 1.8 +LICENSE="ISC" 1.9 TARBALL="$SOURCE-$VERSION.tar.gz" 1.10 WEB_SITE="http://www.nongnu.org/confuse/" 1.11 WGET_URL="http://savannah.nongnu.org/download/$SOURCE/$TARBALL" 1.12 1.13 +DEPENDS="" 1.14 + 1.15 # Rules to configure and make the package. 1.16 compile_rules() 1.17 { 1.18 @@ -21,15 +23,15 @@ 1.19 --mandir=/usr/share/man \ 1.20 $CONFIGURE_ARGS 1.21 sed -i 's/ -Werror//' src/Makefile 1.22 - make && make DESTDIR=$PWD/_pkg install 1.23 + make && make DESTDIR=$DESTDIR install 1.24 } 1.25 1.26 # Rules to gen a SliTaz package suitable for Tazpkg. 1.27 genpkg_rules() 1.28 { 1.29 mkdir -p $fs/usr/lib 1.30 - cp -a $_pkg/usr/include $fs/usr 1.31 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.32 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.33 + cp -a $install/usr/include $fs/usr 1.34 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.35 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.36 } 1.37