wok view urxvt-full/receipt @ rev 8124

Up: openssh to 5.7p1.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jan 24 08:10:30 2011 +0000 (2011-01-24)
parents 30bb68da9336
children abd5344ad8c6
line source
1 # SliTaz package receipt.
3 PACKAGE="urxvt-full"
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 gcc-lib-base"
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"
14 PROVIDE="urxvt"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 busybox patch -p0 -i $WOK/urxvt/stuff/gcc.u
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --enable-everything \
23 --mandir=/usr/share/man $CONFIGURE_ARGS && \
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib $fs/usr
33 strip -s $fs/usr/bin/*
35 }