wok view urxvt-full/receipt @ rev 2028

Add: libmcs & libmcs-dev
author Fabrice THIROUX <mimas@slitaz.org>
date Fri Jan 09 00:40:14 2009 +0100 (2009-01-09)
parents
children 27a68753fff8
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"
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 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --enable-everything \
21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib $fs/usr
31 strip -s $fs/usr/bin/*
33 }