wok-next view urxvt/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
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="devel@slitaz.org"
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="libx11-dev libice-dev gdk-pixbuf-dev \
15 startup-notification-dev libxmu-dev libxft-dev perl-dev ncurses-extra"
16 SPLIT="$PACKAGE-full:full"
18 compile_rules() {
19 case $SET in
20 '')
21 ./configure \
22 --disable-everything \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 ;;
27 full)
28 ./configure \
29 --enable-everything \
30 --enable-256-color \
31 --with-terminfo=/usr/share/terminfo \
32 $CONFIGURE_ARGS &&
33 make &&
34 make install || return 1
36 R="$install/usr/share/terminfo"
37 mkdir -p $R
38 tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo
39 ;;
40 esac
41 }
43 genpkg_rules() {
44 case $PACKAGE in
45 urxvt)
46 copy @std
47 DEPENDS="libx11"
48 ;;
49 urxvt-full)
50 copy @std
51 CAT="utilities|everything enabled"
52 DEPENDS="fontconfig freetype gdk-pixbuf glib perl perl-core \
53 startup-notification libx11 libxft libxmu \
54 libxrender libxt"
55 PROVIDE="urxvt"
56 ;;
57 esac
58 TAGS="terminal"
59 }