blob: 196c11fbf3f2534a07161f54f85245fc207e79c2 (
plain)
1 # Description: The standard termulator.
2 # URL: http://dickey.his.com/xterm/xterm.html
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Packager: Han Boetes, han at mijncomputer dot nl
5 # Depends on: xorg-libxaw xorg-font-alias xorg-font-misc-misc
6
7 name=xterm
8 version=318
9 release=1
10 source=(ftp://invisible-island.net/$name/$name-$version.tgz \
11 configure.diff)
12
13 build() {
14 cd $name-$version
15 [ -z "$BASH_VERSION" ] && patch -p0 -i $SRC/configure.diff
16
17 ./configure --prefix=/usr \
18 --mandir=/usr/man \
19 --disable-nls \
20 --enable-256-color \
21 --enable-wide-chars
22 make
23 make install DESTDIR=$PKG
24 }
|