contrib/st/Pkgfile

29 lines
641 B
Plaintext
Raw Normal View History

# Description: Simple terminal emulator for X, with X resource support (patch)
# URL: https://st.suckless.org
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
# Depends on: fontconfig freetype xorg-libx11 xorg-libxext xorg-libxft
2013-08-19 20:26:13 +02:00
name=st
2022-10-05 23:52:28 +02:00
version=0.9
2022-01-08 22:36:11 +01:00
release=1
realn=st
2021-02-08 22:42:41 +01:00
source=(
https://dl.suckless.org/${realn}/${realn}-${version}.tar.gz
xrdb-plus.patch
)
2013-08-19 20:26:13 +02:00
build() {
2021-02-08 22:42:41 +01:00
cd ${realn}-${version}
2018-02-18 19:32:28 +01:00
2021-02-08 22:42:41 +01:00
patch -p1 -i "${SRC}"/xrdb-plus.patch
2018-03-16 06:52:24 +01:00
sed -i '/tic/d' Makefile
2018-02-18 19:32:28 +01:00
make CC="${CC:-cc}" PREFIX=/usr \
X11INC=/usr/include/X11 X11LIB=/usr/lib \
2021-02-08 22:42:41 +01:00
DESTDIR="${PKG}" \
all install
2013-08-19 20:26:13 +02:00
}
# s-sh-mode