25 lines
588 B
Plaintext
25 lines
588 B
Plaintext
# 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
|
|
# Depends on: xorg
|
|
|
|
name=xterm
|
|
version=223
|
|
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
|
|
}
|