wok diff fribidi/receipt @ rev 15106
xmlrpc-c: create depend.mk files
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Aug 14 16:43:26 2013 +0000 (2013-08-14) |
parents | e5ae411e1d8c |
children | 9412b690444b |
line diff
1.1 --- a/fribidi/receipt Mon Apr 04 01:54:51 2011 +0000 1.2 +++ b/fribidi/receipt Wed Aug 14 16:43:26 2013 +0000 1.3 @@ -5,11 +5,13 @@ 1.4 CATEGORY="x-window" 1.5 SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm" 1.6 MAINTAINER="pankso@slitaz.org" 1.7 -DEPENDS="glibc-base" 1.8 +LICENSE="LGPL2.1" 1.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.10 WEB_SITE="http://fribidi.freedesktop.org/wiki/" 1.11 WGET_URL="http://fribidi.org/download/$TARBALL" 1.12 1.13 +DEPENDS="glibc-base" 1.14 + 1.15 # Rules to configure and make the package. 1.16 compile_rules() 1.17 { 1.18 @@ -17,14 +19,14 @@ 1.19 ./configure --prefix=/usr --infodir=/usr/share/info \ 1.20 --mandir=/usr/share/man $CONFIGURE_ARGS 1.21 make 1.22 - make DESTDIR=$PWD/_pkg install 1.23 + 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/bin $fs/usr/lib 1.30 - cp -a $_pkg/usr/bin/fribidi $fs/usr/bin 1.31 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.32 + cp -a $install/usr/bin/fribidi $fs/usr/bin 1.33 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.34 } 1.35