wok view urxvt/receipt @ rev 4937

add/improve TAGS h* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 14:01:36 2010 +0000 (2010-02-16)
parents 27a68753fff8
children 3115c291f303
line source
1 # SliTaz package receipt.
3 PACKAGE="urxvt"
4 VERSION="9.06"
5 CATEGORY="utilities"
6 SHORT_DESC="terminal with unicode support"
7 MAINTAINER="sygne@ombres.eu"
8 DEPENDS="fontconfig xorg expat freetype xorg-libXft zlib"
9 BUILD_DEPENDS="xorg-dev xorg-libXft-dev xorg-libX11-dev"
10 SOURCE="rxvt-unicode"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html"
13 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 busybox patch -p0 -i ../stuff/gcc.u
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --disable-perl --with-codesets='eu' \
22 --mandir=/usr/share/man $CONFIGURE_ARGS && \
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 strip -s $fs/usr/bin/*
33 }