opt/xterm/Pkgfile

27 lines
655 B
Plaintext
Raw Normal View History

# Description: Termulator emulator for X Windows
2021-02-03 17:42:09 +01:00
# URL: https://invisible-island.net/xterm/xterm.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
2021-11-14 11:13:42 +01:00
# Depends on: util-linux xorg-font-alias xorg-font-misc-misc xorg-libxaw
2006-11-28 17:53:11 +01:00
name=xterm
2023-01-11 11:00:23 +01:00
version=378
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 17:53:11 +01:00
2009-01-08 17:06:10 +01:00
build() {
2021-02-03 17:42:09 +01:00
cd $name-$version
2012-10-01 16:12:55 +02:00
2021-02-03 17:42:09 +01:00
./configure \
--prefix=/usr \
--with-app-defaults=/usr/share/X11/app-defaults/ \
--disable-nls \
--enable-256-color \
--enable-wide-chars
2015-08-30 00:49:00 +02:00
2021-02-03 17:42:09 +01:00
make
make install DESTDIR=$PKG
2021-02-03 17:42:09 +01:00
install -d $PKG/usr/share/applications
install -m 0644 xterm.desktop $PKG/usr/share/applications
2006-11-28 17:53:11 +01:00
}