wok view xterm/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 e5d0fa35dcd1
children 3ce7127900b0
line source
1 # SliTaz package receipt.
3 PACKAGE="xterm"
4 VERSION="309"
5 CATEGORY="utilities"
6 SHORT_DESC="X Terminal emulator."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://invisible-island.net/xterm/"
11 WGET_URL="ftp://invisible-island.net/$PACKAGE/$TARBALL"
12 GENERIC_PIXMAPS="no"
13 TAGS="terminal"
14 HOST_ARCH="i486 arm"
16 DEPENDS="expat fontconfig freetype ncurses xorg-libXft xorg-libXt xorg-libXaw"
17 BUILD_DEPENDS="expat-dev fontconfig-dev freetype-dev ncurses-dev \
18 xorg-libXft-dev xorg-libXt-dev xorg-libXaw-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --prefix=/usr \
25 --sysconfdir=/etc \
26 --mandir=/usr/share/man \
27 --localstatedir=/var \
28 --with-app-defaults=/usr/share/X11/app-defaults \
29 --enable-wide-chars \
30 --enable-freetype \
31 --enable-doublechars \
32 --enable-256-color \
33 --enable-meta-sends-esc \
34 --disable-delete-is-del \
35 --disable-sun-fkeys \
36 --disable-boxchars \
37 --disable-desktop \
38 --disable-tek4014 \
39 --disable-vt52 \
40 --disable-luit \
41 --disable-rectangles \
42 --with-icon-symlink \
43 $CONFIGURE_ARGS &&
44 make &&
45 make DESTDIR=$DESTDIR install
46 }
48 # Rules to gen a SliTaz package suitable for Tazpkg.
49 genpkg_rules()
50 {
51 cp -a $install/* $fs
52 find $fs -regex '.*\(2.\|U\|I\|8r\|ux\|man\).*' -delete
53 rm -rf $fs/usr/share/pixmaps
54 ln -s xterm $fs/usr/bin/uxterm
55 }
57 # One of the first X apps cross compiled. Be sure all went well
58 testsuite()
59 {
60 readelf -h $install/usr/bin/xterm
61 }