wok-6.x annotate urxvt/receipt @ rev 15572
util-linux-mount: add symlink to libmount.so
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Tue Nov 26 22:44:20 2013 +0100 (2013-11-26) |
parents | d27efa12de84 |
children | 15f961c96e62 |
rev | line source |
---|---|
sygne@1982 | 1 # SliTaz package receipt. |
sygne@1982 | 2 |
sygne@1982 | 3 PACKAGE="urxvt" |
devl547@13746 | 4 VERSION="9.16" |
sygne@1982 | 5 CATEGORY="utilities" |
sygne@1982 | 6 SHORT_DESC="terminal with unicode support" |
sygne@1982 | 7 MAINTAINER="sygne@ombres.eu" |
pascal@15000 | 8 LICENSE="GPL2" |
sygne@1982 | 9 SOURCE="rxvt-unicode" |
sygne@1982 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
sygne@1982 | 11 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" |
sygne@1982 | 12 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" |
jozee@4974 | 13 TAGS="terminal" |
sygne@1982 | 14 |
pascal@15000 | 15 DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base xorg-xmessage" |
pascal@15000 | 16 |
sygne@1982 | 17 # Rules to configure and make the package. |
sygne@1982 | 18 compile_rules() |
sygne@1982 | 19 { |
sygne@1982 | 20 cd $src |
pascal@8974 | 21 busybox patch -p0 -i $stuff/gcc.u |
sygne@1982 | 22 ./configure --prefix=/usr --infodir=/usr/share/info \ |
sygne@1982 | 23 --disable-perl --with-codesets='eu' \ |
sygne@1982 | 24 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
pascal@15000 | 25 make && make DESTDIR=$DESTDIR install |
sygne@1982 | 26 } |
sygne@1982 | 27 |
sygne@1982 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
sygne@1982 | 29 genpkg_rules() |
sygne@1982 | 30 { |
sygne@1982 | 31 mkdir -p $fs/usr |
pascal@15000 | 32 cp -a $install/usr/bin $fs/usr |
sygne@1982 | 33 } |
sygne@1982 | 34 |