blob: 709af4b1aec2be7b9eaa6fcabf762edbec0fb228 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Contributor: Kiyoshi Aman <adelie@aerdan.vulpine.house>
# Maintainer: Kiyoshi Aman <adelie@aerdan.vulpine.house>
pkgname=xterm
pkgver=359
pkgrel=0
pkgdesc="An X-based terminal emulator"
url="https://invisible-island.net/xterm/"
arch="all"
options="!check" # No test suite.
license="X11"
depends=""
makedepends="libx11-dev libsm-dev libice-dev libxt-dev utmps-dev libxaw-dev
libxext-dev libxrender-dev libxft-dev freetype-dev ncurses-dev
pcre-dev"
subpackages="$pkgname-doc"
source="https://invisible-mirror.net/archives/xterm/xterm-$pkgver.tgz
posix-ptmx.patch
"
build() {
LIBS="-ltinfow" ./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--with-pcre \
--enable-sixel-graphics
# This is NOT A TYPO!
#
# XTerm does not use ld(1) as a linker. It uses a shell script
# called 'plink.sh' which tries to Be Smart, but is actually
# Quite Dumb.
#
# It determines that the utmp symbols are in musl, and decides
# -lutmps really isn't necessary. However! There is some solace.
#
# -k is like -l, but is forced, even if it isn't "really needed".
# So we use -k for utmps.
make EXTRA_LOADFLAGS="-kutmps -lskarnet"
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="277167e09d8568b4a2c6f65fb572fdd41ed4b8c93d9b1e37118dbd4f37a577544e16d639849b008b54b7c7c8746cd37a086cf3ed396c0cefbfcc085ca297609f xterm-359.tgz
6811cd67ffe21dc23c9ad6a439291bb0b3c3d347f4d5e2cd65de9f790fde2bf7323fe9f1b309d95ac98a3ffaae5989bc73a2c5fe08aa9f6a2c6cbc3b9adcf8d9 posix-ptmx.patch"
|