wok-next diff urxvt/receipt @ rev 2156
bash: fix sh link when removing
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu Feb 05 22:30:20 2009 +0100 (2009-02-05) |
parents | |
children | 27a68753fff8 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/urxvt/receipt Thu Feb 05 22:30:20 2009 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="urxvt" 1.7 +VERSION="9.06" 1.8 +CATEGORY="utilities" 1.9 +SHORT_DESC="terminal with unicode support" 1.10 +MAINTAINER="sygne@ombres.eu" 1.11 +DEPENDS="fontconfig xorg" 1.12 +BUILD_DEPENDS="xorg-dev xorg-libXft-dev xorg-libX11-dev" 1.13 +SOURCE="rxvt-unicode" 1.14 +TARBALL="$SOURCE-$VERSION.tar.bz2" 1.15 +WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" 1.16 +WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.23 + --disable-perl --with-codesets='eu' \ 1.24 + --mandir=/usr/share/man $CONFIGURE_ARGS && \ 1.25 + make && make DESTDIR=$PWD/_pkg 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 + strip -s $fs/usr/bin/* 1.34 + 1.35 +} 1.36 +