wok-next diff freetype1/receipt @ rev 15288
pkg-config: remove a wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Sep 26 17:57:02 2013 +0000 (2013-09-26) |
parents | 28148b876a49 |
children | ee5c8b018b62 |
line diff
1.1 --- a/freetype1/receipt Mon Mar 28 20:13:28 2011 +0000 1.2 +++ b/freetype1/receipt Thu Sep 26 17:57:02 2013 +0000 1.3 @@ -6,11 +6,13 @@ 1.4 CATEGORY="x-window" 1.5 SHORT_DESC="Freetype1 font engine." 1.6 MAINTAINER="rcx@zoominternet.net" 1.7 -DEPENDS="glibc-base" 1.8 +LICENSE="BSD" 1.9 TARBALL="$SOURCE-$VERSION.tar.gz" 1.10 WEB_SITE="http://www.freetype.org/" 1.11 WGET_URL="$SF_MIRROR/$SOURCE/$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 @@ -28,14 +30,14 @@ 1.19 make ttlib ttpo || return 1 1.20 1.21 cd lib 1.22 - make DESTDIR=$PWD/_pkg -f arch/unix/Makefile install || return 1 1.23 + make DESTDIR=$DESTDIR -f arch/unix/Makefile install || return 1 1.24 cd ../po 1.25 - make DESTDIR=$PWD/_pkg -f Makefile install || return 1 1.26 + make DESTDIR=$DESTDIR -f Makefile install || return 1 1.27 } 1.28 1.29 # Rules to gen a SliTaz package suitable for Tazpkg. 1.30 genpkg_rules() 1.31 { 1.32 mkdir -p $fs/usr/lib 1.33 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.34 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.35 }