wok annotate urxvt-full/receipt @ rev 2510

qemu: update depends
author Julien Rabier <taziden@slitaz.org>
date Mon Mar 16 16:44:07 2009 +0100 (2009-03-16)
parents e0d0cc437464
children 30bb68da9336
rev   line source
sygne@1983 1 # SliTaz package receipt.
sygne@1983 2
sygne@1983 3 PACKAGE="urxvt-full"
sygne@1983 4 VERSION="9.06"
sygne@1983 5 CATEGORY="utilities"
sygne@1983 6 SHORT_DESC="terminal with unicode support"
sygne@1983 7 MAINTAINER="sygne@ombres.eu"
pascal@2438 8 DEPENDS="fontconfig xorg expat freetype xorg-libXft zlib"
sygne@1983 9 BUILD_DEPENDS="xorg-dev xorg-libXft-dev xorg-libX11-dev"
sygne@1983 10 SOURCE="rxvt-unicode"
sygne@1983 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
sygne@1983 12 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html"
sygne@1983 13 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL"
pascal@2438 14 PROVIDE="urxvt"
sygne@1983 15
sygne@1983 16 # Rules to configure and make the package.
sygne@1983 17 compile_rules()
sygne@1983 18 {
sygne@1983 19 cd $src
sygne@1983 20 ./configure --prefix=/usr --infodir=/usr/share/info \
sygne@1983 21 --enable-everything \
sygne@1983 22 --mandir=/usr/share/man $CONFIGURE_ARGS && \
sygne@1983 23 make && make DESTDIR=$PWD/_pkg install
sygne@1983 24 }
sygne@1983 25
sygne@1983 26 # Rules to gen a SliTaz package suitable for Tazpkg.
sygne@1983 27 genpkg_rules()
sygne@1983 28 {
sygne@1983 29 mkdir -p $fs/usr
sygne@1983 30 cp -a $_pkg/usr/bin $fs/usr
sygne@1983 31 cp -a $_pkg/usr/lib $fs/usr
sygne@1983 32 strip -s $fs/usr/bin/*
sygne@1983 33
sygne@1983 34 }
sygne@1983 35