2013-08-19 20:26:13 +02:00
|
|
|
# Description: simple terminal implementation for X
|
2018-12-23 05:55:59 -05:00
|
|
|
# URL: https://st.suckless.org/
|
2018-02-18 13:32:28 -05:00
|
|
|
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
|
2013-08-19 20:26:13 +02:00
|
|
|
# Depends on: xorg-libxext xorg-libxft
|
|
|
|
|
|
|
|
name=st
|
2020-06-20 06:43:29 -04:00
|
|
|
version=0.8.4
|
2018-02-18 13:32:28 -05:00
|
|
|
release=1
|
2018-12-23 05:55:59 -05:00
|
|
|
source=(https://dl.suckless.org/st/$name-$version.tar.gz)
|
2013-08-19 20:26:13 +02:00
|
|
|
|
|
|
|
build () {
|
2018-02-18 13:32:28 -05:00
|
|
|
cd "$name-$version"
|
|
|
|
|
2018-03-16 01:52:24 -04:00
|
|
|
if [ -f $PKGMK_ROOT/config.h ]; then
|
|
|
|
cp $PKGMK_ROOT/config.h .
|
|
|
|
fi
|
|
|
|
|
2018-02-18 13:32:28 -05:00
|
|
|
make CC=gcc
|
|
|
|
make DESTDIR=$PKG PREFIX=/usr TERMINFO=$PKG/usr/share/terminfo install
|
|
|
|
|
|
|
|
# Remove duplicates of files from ncurses
|
|
|
|
rm -f $PKG/usr/share/terminfo/s/{st,st-256color}
|
2013-08-19 20:26:13 +02:00
|
|
|
}
|