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
|
2006-11-28 16:55:10 +00:00
|
|
|
# Depends on: xorg
|
2006-11-28 16:53:11 +00:00
|
|
|
|
|
|
|
name=xterm
|
2006-12-01 13:36:24 +01:00
|
|
|
version=223
|
2006-11-28 16:53:11 +00:00
|
|
|
release=1
|
|
|
|
source="
|
|
|
|
ftp://invisible-island.net/xterm/xterm-$version.tgz
|
|
|
|
configure.diff
|
|
|
|
"
|
|
|
|
|
|
|
|
build()
|
|
|
|
{
|
|
|
|
cd $name-$version
|
|
|
|
[ -z "$BASH_VERSION" ] && patch -p0 -i $SRC/configure.diff
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-nls \
|
|
|
|
--enable-256-color
|
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
|
|
|
chmod 0755 $PKG/usr/bin/xterm
|
|
|
|
}
|