2017-10-04 14:25:57 +02:00
|
|
|
# Description: Termulator emulator for X Windows
|
2020-06-06 13:00:05 +02:00
|
|
|
# URL: https://invisible-island.net/xterm/xterm.html
|
2017-10-04 14:25:57 +02:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2019-01-14 15:04:13 +01:00
|
|
|
# Depends on: util-linux xorg-libxaw xorg-font-alias xorg-font-misc-misc
|
2006-11-28 16:53:11 +00:00
|
|
|
|
|
|
|
name=xterm
|
2020-12-28 13:17:37 +01:00
|
|
|
version=363
|
2007-07-11 13:30:55 +02:00
|
|
|
release=1
|
2020-01-18 14:52:42 +01:00
|
|
|
source=(https://invisible-mirror.net/archives/$name/$name-$version.tgz)
|
2006-11-28 16:53:11 +00:00
|
|
|
|
2009-01-08 16:06:10 +00:00
|
|
|
build() {
|
2006-11-28 16:53:11 +00:00
|
|
|
cd $name-$version
|
2012-10-01 16:12:55 +02:00
|
|
|
|
2009-01-08 16:06:10 +00:00
|
|
|
./configure --prefix=/usr \
|
2017-10-04 14:25:57 +02:00
|
|
|
--with-app-defaults=/usr/share/X11/app-defaults/ \
|
2009-01-08 16:06:10 +00:00
|
|
|
--disable-nls \
|
|
|
|
--enable-256-color \
|
|
|
|
--enable-wide-chars
|
2015-08-30 00:49:00 +02:00
|
|
|
|
2006-11-28 16:53:11 +00:00
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
2017-10-04 14:25:57 +02:00
|
|
|
|
|
|
|
install -d $PKG/usr/share/applications
|
|
|
|
install -m 0644 xterm.desktop $PKG/usr/share/applications
|
2006-11-28 16:53:11 +00:00
|
|
|
}
|