wok annotate urxvt-full/receipt @ rev 10694

Add qemu-light (stripped down, but works) - qemu* may move to undigest since I can't make it work properly
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 27 22:52:39 2011 +0200 (2011-05-27)
parents d1768332cee0
children 83d356862b64
rev   line source
sygne@1983 1 # SliTaz package receipt.
sygne@1983 2
sygne@1983 3 PACKAGE="urxvt-full"
slaxemulator@8962 4 VERSION="9.10"
sygne@1983 5 CATEGORY="utilities"
sygne@1983 6 SHORT_DESC="terminal with unicode support"
sygne@1983 7 MAINTAINER="sygne@ombres.eu"
pascal@9605 8 DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base xorg-xmessage"
sygne@1983 9 SOURCE="rxvt-unicode"
sygne@1983 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
sygne@1983 11 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html"
sygne@1983 12 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL"
pascal@2438 13 PROVIDE="urxvt"
sygne@1983 14
sygne@1983 15 # Rules to configure and make the package.
sygne@1983 16 compile_rules()
sygne@1983 17 {
sygne@1983 18 cd $src
slaxemulator@9701 19 busybox patch -p0 -i $WOK/urxvt/stuff/gcc.u
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
sygne@1983 33 }
sygne@1983 34