wok-next rev 13681
urxvt-full: up 9.15, 256 colors + terminfo
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Nov 29 04:51:11 2012 +0000 (2012-11-29) |
parents | ce9c00ae0e36 |
children | 5525af80165f |
files | urxvt-full/receipt |
line diff
1.1 --- a/urxvt-full/receipt Tue Nov 27 10:22:09 2012 -0800 1.2 +++ b/urxvt-full/receipt Thu Nov 29 04:51:11 2012 +0000 1.3 @@ -1,34 +1,39 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="urxvt-full" 1.7 -VERSION="9.10" 1.8 +VERSION="9.15" 1.9 CATEGORY="utilities" 1.10 -SHORT_DESC="terminal with unicode support" 1.11 -MAINTAINER="sygne@ombres.eu" 1.12 -DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base xorg-xmessage" 1.13 +SHORT_DESC="Terminal emulator with Unicode support for X11" 1.14 +WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" 1.15 +MAINTAINER="al.bobylev@gmail.com" 1.16 + 1.17 SOURCE="rxvt-unicode" 1.18 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.19 -WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" 1.20 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" 1.21 +DEPENDS="bzlib expat fontconfig freetype gcc-lib-base gdk-pixbuf glib \ 1.22 +glibc-base libffi libgio libpng libxcb startup-notification xcb-util \ 1.23 +xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXft xorg-libXrender zlib" 1.24 +BUILD_DEPENDS="xorg-libX11-dev freetype-dev xorg-libXft-dev gdk-pixbuf-dev \ 1.25 +startup-notification-dev ncursesw-extra" 1.26 + 1.27 PROVIDE="urxvt" 1.28 1.29 # Rules to configure and make the package. 1.30 compile_rules() 1.31 { 1.32 cd $src 1.33 - busybox patch -p0 -i $WOK/urxvt/stuff/gcc.u 1.34 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.35 - --enable-everything \ 1.36 - --mandir=/usr/share/man $CONFIGURE_ARGS && \ 1.37 - make && make DESTDIR=$PWD/_pkg install 1.38 + ./configure --enable-everything --enable-256-color \ 1.39 + --with-terminfo=/usr/share/terminfo $CONFIGURE_ARGS && \ 1.40 + make && make install 1.41 + R="$install/usr/share/terminfo"; mkdir -p $R 1.42 + tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo 1.43 } 1.44 1.45 # Rules to gen a SliTaz package suitable for Tazpkg. 1.46 genpkg_rules() 1.47 { 1.48 - mkdir -p $fs/usr 1.49 - cp -a $_pkg/usr/bin $fs/usr 1.50 - cp -a $_pkg/usr/lib $fs/usr 1.51 - 1.52 + cp -a $install/* $fs 1.53 + rm -rf $fs/usr/share/man 1.54 + P="$fs/usr/share/pixmaps"; mkdir -p $P; cp -a $stuff/urxvt.png $P 1.55 } 1.56