contrib/st/Pkgfile

24 lines
567 B
Plaintext
Raw Normal View History

2013-08-19 20:26:13 +02:00
# Description: simple terminal implementation for X
2018-12-23 11:55:59 +01:00
# URL: https://st.suckless.org/
2018-02-18 19:32:28 +01: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 12:43:29 +02:00
version=0.8.4
2018-02-18 19:32:28 +01:00
release=1
2018-12-23 11:55:59 +01:00
source=(https://dl.suckless.org/st/$name-$version.tar.gz)
2013-08-19 20:26:13 +02:00
build () {
2018-02-18 19:32:28 +01:00
cd "$name-$version"
2018-03-16 06:52:24 +01:00
if [ -f $PKGMK_ROOT/config.h ]; then
cp $PKGMK_ROOT/config.h .
fi
2018-02-18 19:32:28 +01: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
}