wok-next view urxvt/receipt @ rev 20333

Up bmpanel2, urxvt, usbip
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Nov 15 16:27:09 2017 +0200 (2017-11-15)
parents 29a4d8677ecf
children 3d5fe73ca04f
line source
1 # SliTaz package receipt v2.
3 PACKAGE="urxvt"
4 VERSION="9.22"
5 CATEGORY="utilities"
6 SHORT_DESC="Terminal emulator with Unicode support for X11"
7 MAINTAINER="sygne@ombres.eu"
8 LICENSE="GPL2"
9 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html"
11 TARBALL="rxvt-unicode-$VERSION.tar.bz2"
12 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL"
14 BUILD_DEPENDS="xorg-libX11-dev xorg-libICE-dev gdk-pixbuf-dev \
15 startup-notification-dev xorg-libXmu-dev xorg-libXft-dev perl-dev ncurses-extra"
16 SPLIT="urxvt-full"
18 compile_rules() {
19 rm -r $install-full 2>/dev/null
20 cp -a $src $src-full
22 ./configure \
23 --disable-everything \
24 $CONFIGURE_ARGS &&
25 make && make install || return 1
27 cd $src-full
28 ./configure \
29 --enable-everything \
30 --enable-256-color \
31 --with-terminfo=/usr/share/terminfo \
32 $CONFIGURE_ARGS &&
33 make && make DESTDIR=$install-full install || return 1
35 install -Dm0644 $stuff/urxvt-full.desktop \
36 $install-full/usr/share/applications/urxvt-full.desktop
38 R="$install-full/usr/share/terminfo"
39 mkdir -p $R
40 tic -s -o $R $src-full/doc/etc/rxvt-unicode.terminfo
41 }
43 genpkg_rules() {
44 case $PACKAGE in
45 urxvt)
46 copy @std
47 DEPENDS="xorg-libX11"
48 ;;
49 urxvt-full)
50 install=$install-full copy @std
51 CAT="utilities|everything enabled"
52 DEPENDS="fontconfig freetype gdk-pixbuf glib perl perl-core \
53 startup-notification xorg-libX11 xorg-libXft xorg-libXmu \
54 xorg-libXrender xorg-libXt"
55 PROVIDE="urxvt"
56 ;;
57 esac
58 TAGS="terminal"
59 }