wok annotate urxvt-full/receipt @ rev 6005

leocad: Update wget URL
author Matthew Sheets <rcx@zoominternet.net>
date Sat Aug 14 16:16:00 2010 +0000 (2010-08-14)
parents 30bb68da9336
children abd5344ad8c6
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@5007 8 DEPENDS="fontconfig xorg expat freetype xorg-libXft zlib gcc-lib-base"
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
pascal@4263 20 busybox patch -p0 -i $WOK/urxvt/stuff/gcc.u
sygne@1983 21 ./configure --prefix=/usr --infodir=/usr/share/info \
sygne@1983 22 --enable-everything \
sygne@1983 23 --mandir=/usr/share/man $CONFIGURE_ARGS && \
sygne@1983 24 make && make DESTDIR=$PWD/_pkg install
sygne@1983 25 }
sygne@1983 26
sygne@1983 27 # Rules to gen a SliTaz package suitable for Tazpkg.
sygne@1983 28 genpkg_rules()
sygne@1983 29 {
sygne@1983 30 mkdir -p $fs/usr
sygne@1983 31 cp -a $_pkg/usr/bin $fs/usr
sygne@1983 32 cp -a $_pkg/usr/lib $fs/usr
sygne@1983 33 strip -s $fs/usr/bin/*
sygne@1983 34
sygne@1983 35 }
sygne@1983 36