void-packages/srcpkgs/st-git/template
2014-08-20 12:15:48 +00:00

34 lines
891 B
Plaintext

# Template file for 'st-git'
pkgname=st-git
version=20140820
revision=1
build_style=gnu-makefile
provides="st-${version}_${revision}"
replaces="st>=0"
hostmakedepends="pkg-config git"
makedepends="fontconfig-devel libX11-devel libXft-devel terminus-font"
depends="ncurses"
short_desc="Simple terminal implementation for X"
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
license="MIT"
homepage="http://st.suckless.org"
do_fetch() {
local url="git://git.suckless.org/st"
msg_normal "Fetching source from $url ...\n"
git clone ${url} ${pkgname}-${version}
}
pre_build() {
sed -i 's|Liberation Mono|Terminus|g' config.def.h
sed -i 's|-I/usr/include||g' config.mk
sed -i 's|-L/usr/lib||g' config.mk
# We will use tic after install. See INSTALL.
sed -i 's|@tic -s st.info||g' Makefile
}
post_install() {
vinstall README 644 usr/share/doc/st
vinstall LICENSE 644 usr/share/licenses/st
}