wok annotate urxvt-full/receipt @ rev 15280

cinepaint: remove a wrong error trigger (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 26 13:12:43 2013 +0000 (2013-09-26)
parents d27efa12de84
children bfb37da1908b
rev   line source
sygne@1983 1 # SliTaz package receipt.
sygne@1983 2
sygne@1983 3 PACKAGE="urxvt-full"
devl547@13746 4 VERSION="9.16"
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"
pascal@15000 14
al@13681 15 DEPENDS="bzlib expat fontconfig freetype gcc-lib-base gdk-pixbuf glib \
al@13681 16 glibc-base libffi libgio libpng libxcb startup-notification xcb-util \
al@13681 17 xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXft xorg-libXrender zlib"
al@13681 18 BUILD_DEPENDS="xorg-libX11-dev freetype-dev xorg-libXft-dev gdk-pixbuf-dev \
al@13681 19 startup-notification-dev ncursesw-extra"
al@13681 20
pascal@2438 21 PROVIDE="urxvt"
sygne@1983 22
sygne@1983 23 # Rules to configure and make the package.
sygne@1983 24 compile_rules()
sygne@1983 25 {
sygne@1983 26 cd $src
al@13681 27 ./configure --enable-everything --enable-256-color \
al@13681 28 --with-terminfo=/usr/share/terminfo $CONFIGURE_ARGS && \
al@13681 29 make && make install
al@13681 30 R="$install/usr/share/terminfo"; mkdir -p $R
al@13681 31 tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo
sygne@1983 32 }
sygne@1983 33
sygne@1983 34 # Rules to gen a SliTaz package suitable for Tazpkg.
sygne@1983 35 genpkg_rules()
sygne@1983 36 {
al@13681 37 cp -a $install/* $fs
al@13681 38 rm -rf $fs/usr/share/man
al@13681 39 P="$fs/usr/share/pixmaps"; mkdir -p $P; cp -a $stuff/urxvt.png $P
sygne@1983 40 }