wok annotate urxvt-full/receipt @ rev 17501

Normalize tags "file-manager", "web-browser", "text-editor", "terminal", and "window-manager" according to tazx.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 08 02:04:05 2015 +0200 (2015-01-08)
parents bfb37da1908b
children 15f961c96e62
rev   line source
sygne@1983 1 # SliTaz package receipt.
sygne@1983 2
sygne@1983 3 PACKAGE="urxvt-full"
psychomaniak@16846 4 VERSION="9.20"
sygne@1983 5 CATEGORY="utilities"
al@13681 6 SHORT_DESC="Terminal emulator with Unicode support for X11"
al@13681 7 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html"
al@13681 8 MAINTAINER="al.bobylev@gmail.com"
pascal@15000 9 LICENSE="GPL2"
al@13681 10
sygne@1983 11 SOURCE="rxvt-unicode"
sygne@1983 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
sygne@1983 13 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL"
al@17501 14 TAGS="terminal"
pascal@15000 15
al@13681 16 DEPENDS="bzlib expat fontconfig freetype gcc-lib-base gdk-pixbuf glib \
al@13681 17 glibc-base libffi libgio libpng libxcb startup-notification xcb-util \
al@13681 18 xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXft xorg-libXrender zlib"
al@13681 19 BUILD_DEPENDS="xorg-libX11-dev freetype-dev xorg-libXft-dev gdk-pixbuf-dev \
al@13681 20 startup-notification-dev ncursesw-extra"
al@13681 21
pascal@2438 22 PROVIDE="urxvt"
sygne@1983 23
sygne@1983 24 # Rules to configure and make the package.
sygne@1983 25 compile_rules()
sygne@1983 26 {
sygne@1983 27 cd $src
al@13681 28 ./configure --enable-everything --enable-256-color \
al@13681 29 --with-terminfo=/usr/share/terminfo $CONFIGURE_ARGS && \
al@13681 30 make && make install
al@13681 31 R="$install/usr/share/terminfo"; mkdir -p $R
al@13681 32 tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo
sygne@1983 33 }
sygne@1983 34
sygne@1983 35 # Rules to gen a SliTaz package suitable for Tazpkg.
sygne@1983 36 genpkg_rules()
sygne@1983 37 {
al@13681 38 cp -a $install/* $fs
al@13681 39 rm -rf $fs/usr/share/man
al@13681 40 P="$fs/usr/share/pixmaps"; mkdir -p $P; cp -a $stuff/urxvt.png $P
sygne@1983 41 }