contrib/st/Pkgfile

21 lines
521 B
Plaintext
Raw Normal View History

2013-08-19 20:26:13 +02:00
# Description: simple terminal implementation for X
# URL: http://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
2018-02-18 19:32:28 +01:00
version=0.7
release=1
2013-08-19 20:26:13 +02:00
source=(http://dl.suckless.org/st/$name-$version.tar.gz config.h)
build () {
2018-02-18 19:32:28 +01:00
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}
2013-08-19 20:26:13 +02:00
}