contrib/st/Pkgfile
2018-02-18 13:32:28 -05:00

21 lines
521 B
Plaintext

# Description: simple terminal implementation for X
# URL: http://st.suckless.org/
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
# Depends on: xorg-libxext xorg-libxft
name=st
version=0.7
release=1
source=(http://dl.suckless.org/st/$name-$version.tar.gz config.h)
build () {
cd "$name-$version"
cp $SRC/config.h .
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}
}