wok-current annotate urxvt/receipt @ rev 2093
slitaz-configs: up DEPENDS for 1.0 to 2.0 upgrade (new desktop)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed Jan 28 18:57:20 2009 +0100 (2009-01-28) |
parents | |
children | 27a68753fff8 |
rev | line source |
---|---|
sygne@1982 | 1 # SliTaz package receipt. |
sygne@1982 | 2 |
sygne@1982 | 3 PACKAGE="urxvt" |
sygne@1982 | 4 VERSION="9.06" |
sygne@1982 | 5 CATEGORY="utilities" |
sygne@1982 | 6 SHORT_DESC="terminal with unicode support" |
sygne@1982 | 7 MAINTAINER="sygne@ombres.eu" |
sygne@1982 | 8 DEPENDS="fontconfig xorg" |
sygne@1982 | 9 BUILD_DEPENDS="xorg-dev xorg-libXft-dev xorg-libX11-dev" |
sygne@1982 | 10 SOURCE="rxvt-unicode" |
sygne@1982 | 11 TARBALL="$SOURCE-$VERSION.tar.bz2" |
sygne@1982 | 12 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" |
sygne@1982 | 13 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" |
sygne@1982 | 14 |
sygne@1982 | 15 # Rules to configure and make the package. |
sygne@1982 | 16 compile_rules() |
sygne@1982 | 17 { |
sygne@1982 | 18 cd $src |
sygne@1982 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
sygne@1982 | 20 --disable-perl --with-codesets='eu' \ |
sygne@1982 | 21 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
sygne@1982 | 22 make && make DESTDIR=$PWD/_pkg install |
sygne@1982 | 23 } |
sygne@1982 | 24 |
sygne@1982 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
sygne@1982 | 26 genpkg_rules() |
sygne@1982 | 27 { |
sygne@1982 | 28 mkdir -p $fs/usr |
sygne@1982 | 29 cp -a $_pkg/usr/bin $fs/usr |
sygne@1982 | 30 strip -s $fs/usr/bin/* |
sygne@1982 | 31 |
sygne@1982 | 32 } |
sygne@1982 | 33 |