wok view urxvt-full/receipt @ rev 22084

updated urxvt and urxvt-full ( -> 9.22)
author Hans-G?nter Theisgen
date Thu Oct 31 12:36:47 2019 +0100 (2019-10-31)
parents 15f961c96e62
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="urxvt-full"
4 VERSION="9.22"
5 CATEGORY="utilities"
6 TAGS="terminal"
7 SHORT_DESC="Terminal emulator with Unicode support for X11."
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="GPL2"
10 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html"
12 SOURCE="rxvt-unicode"
13 TARBALL="$SOURCE-$VERSION.tar.bz2"
14 WGET_URL="http://dist.schmorp.de/$SOURCE/$TARBALL"
16 PROVIDE="urxvt"
17 DEPENDS="bzlib expat fontconfig freetype gcc-lib-base gdk-pixbuf glib \
18 glibc-base libffi libgio libpng libxcb startup-notification xcb-util \
19 xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXft xorg-libXrender zlib"
20 BUILD_DEPENDS="freetype-dev gdk-pixbuf-dev ncursesw-extra
21 startup-notification-dev xorg-libX11-dev xorg-libXft-dev"
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure \
27 --enable-everything \
28 --enable-256-color \
29 --with-terminfo=/usr/share/terminfo \
30 $CONFIGURE_ARGS &&
31 make &&
32 make install
34 R="$install/usr/share/terminfo"
35 mkdir -p $R
36 tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 cp -a $install/* $fs
43 rm -rf $fs/usr/share/man
44 }