wok view urxvt/receipt @ rev 20283

security fixes from 0.3.1.9 (2017 Dec 1) and 0.3.1.10 (March 3)... further info: https://blog.torproject.org/new-stable-tor-releases-security-fixes-and-dos-prevention-03210-03110-02915
author Erkan Yilmaz <erkan@slitaz.org>
date Tue Mar 27 11:09:07 2018 +0000 (2018-03-27)
parents 380ffe05937a
children 7c02b0189105
line source
1 # SliTaz package receipt.
3 PACKAGE="urxvt"
4 VERSION="9.16"
5 CATEGORY="utilities"
6 SHORT_DESC="terminal with unicode support"
7 MAINTAINER="sygne@ombres.eu"
8 LICENSE="GPL2"
9 SOURCE="rxvt-unicode"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html"
12 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL"
13 TAGS="terminal"
15 DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base \
16 xorg-xmessage"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 busybox patch -p0 -i $stuff/gcc.u
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --disable-perl \
26 --with-codesets='eu' \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS && \
29 make && make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 }