2006-11-28 16:53:11 +00:00
|
|
|
# Description: The standard termulator.
|
|
|
|
# URL: http://dickey.his.com/xterm/xterm.html
|
|
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
|
|
|
# Packager: Han Boetes, han at mijncomputer dot nl
|
2007-02-28 21:03:55 +00:00
|
|
|
# Depends on: xorg-libxaw
|
2006-11-28 16:53:11 +00:00
|
|
|
|
|
|
|
name=xterm
|
2008-08-05 20:17:30 +00:00
|
|
|
version=236
|
2007-07-11 13:30:55 +02:00
|
|
|
release=1
|
2006-12-13 14:05:25 +00:00
|
|
|
source=(ftp://invisible-island.net/xterm/xterm-$version.tgz \
|
|
|
|
configure.diff)
|
2006-11-28 16:53:11 +00:00
|
|
|
|
|
|
|
build()
|
|
|
|
{
|
|
|
|
cd $name-$version
|
|
|
|
[ -z "$BASH_VERSION" ] && patch -p0 -i $SRC/configure.diff
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-nls \
|
2007-05-10 15:57:38 +02:00
|
|
|
--enable-256-color \
|
|
|
|
--enable-wide-chars
|
2006-11-28 16:53:11 +00:00
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
|
|
|
chmod 0755 $PKG/usr/bin/xterm
|
|
|
|
}
|