wok-6.x diff urxvt/receipt @ rev 17811
tilda: use static flex library (since flex 2.5.39)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Mar 21 11:36:21 2015 +0100 (2015-03-21) |
parents | d27efa12de84 |
children | 15f961c96e62 |
line diff
1.1 --- a/urxvt/receipt Mon Dec 31 13:28:06 2012 +0300 1.2 +++ b/urxvt/receipt Sat Mar 21 11:36:21 2015 +0100 1.3 @@ -5,13 +5,15 @@ 1.4 CATEGORY="utilities" 1.5 SHORT_DESC="terminal with unicode support" 1.6 MAINTAINER="sygne@ombres.eu" 1.7 -DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base xorg-xmessage" 1.8 +LICENSE="GPL2" 1.9 SOURCE="rxvt-unicode" 1.10 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.11 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" 1.12 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" 1.13 TAGS="terminal" 1.14 1.15 +DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base xorg-xmessage" 1.16 + 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 @@ -20,13 +22,13 @@ 1.21 ./configure --prefix=/usr --infodir=/usr/share/info \ 1.22 --disable-perl --with-codesets='eu' \ 1.23 --mandir=/usr/share/man $CONFIGURE_ARGS && \ 1.24 - make && make DESTDIR=$PWD/_pkg install 1.25 + make && make DESTDIR=$DESTDIR install 1.26 } 1.27 1.28 # Rules to gen a SliTaz package suitable for Tazpkg. 1.29 genpkg_rules() 1.30 { 1.31 mkdir -p $fs/usr 1.32 - cp -a $_pkg/usr/bin $fs/usr 1.33 + cp -a $install/usr/bin $fs/usr 1.34 } 1.35