blob: 60dbc9f6441a8ef1c655b2dfb4a099ac9f339037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name=xterm
version=394
release=1
source="https://invisible-mirror.net/archives/$name/$name-$version.tgz"
export TERMINFO=/usr/share/terminfo
build_opt="--with-app-defaults=/usr/share/X11/app-defaults --enable-freetype --enable-wide-chars --with-x --with-tty-group=tty"
prebuild() {
sed -i '/v0/{n;s/new:/new:kb=^?:/}' termcap
printf '\tkbs=\\177,\n' >> terminfo
}
postbuild() {
# exist in busybox
rm $PKG/usr/bin/resize
}
|