CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
xterm: updated to 332
[ports/opt-arm64.git] / xterm / Pkgfile
CommitLineData
5da75ee0
VM
1# Description: The standard termulator.
2# URL: http://dickey.his.com/xterm/xterm.html
3# Maintainer: Jose V Beneyto, sepen at crux dot nu
d8a918dc 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5da75ee0
VM
5# Packager: Han Boetes, han at mijncomputer dot nl
6# Depends on: xorg-libxaw xorg-font-alias xorg-font-misc-misc
7
8name=xterm
7238ba65 9version=332
5da75ee0 10release=1
c205fb98 11source=(ftp://invisible-island.net/$name/$name-$version.tgz)
5da75ee0
VM
12
13build() {
14 cd $name-$version
5da75ee0
VM
15
16 ./configure --prefix=/usr \
c205fb98 17 --with-app-defaults=/usr/share/X11/app-defaults/ \
5da75ee0
VM
18 --disable-nls \
19 --enable-256-color \
20 --enable-wide-chars
21
22 make
23 make install DESTDIR=$PKG
c205fb98
VM
24
25 install -d $PKG/usr/share/applications
26 install -m 0644 xterm.desktop $PKG/usr/share/applications
5da75ee0 27}