wok-next view urxvt/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents c5439f74a6c6
children d5aab818505e
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:full"
18 compile_rules() {
19 case $SET in
20 '')
21 ./configure \
22 --disable-everything \
23 $CONFIGURE_ARGS &&
24 make && make install
25 ;;
26 full)
27 ./configure \
28 --enable-everything \
29 --enable-256-color \
30 --with-terminfo=/usr/share/terminfo \
31 $CONFIGURE_ARGS &&
32 make && make install || return 1
34 R="$install/usr/share/terminfo"
35 mkdir -p $R
36 tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo
37 ;;
38 esac
39 }
41 genpkg_rules() {
42 case $PACKAGE in
43 urxvt)
44 copy @std
45 DEPENDS="xorg-libX11"
46 ;;
47 urxvt-full)
48 copy @std
49 CAT="utilities|everything enabled"
50 DEPENDS="fontconfig freetype gdk-pixbuf glib perl perl-core \
51 startup-notification xorg-libX11 xorg-libXft xorg-libXmu \
52 xorg-libXrender xorg-libXt"
53 PROVIDE="urxvt"
54 ;;
55 esac
56 TAGS="terminal"
57 }