New package: xst-0.7.1.

Closes: #7763 [via git-merge-pr]
This commit is contained in:
maxice8 2017-09-21 14:32:11 -03:00 committed by Michael Aldridge
parent e4f1a692f0
commit 50159591e9
3 changed files with 40 additions and 0 deletions

5
srcpkgs/xst/INSTALL Normal file
View file

@ -0,0 +1,5 @@
case "${ACTION}" in
post)
tic -s usr/share/terminfo/s/st.terminfo
;;
esac

8
srcpkgs/xst/REMOVE Normal file
View file

@ -0,0 +1,8 @@
case "${ACTION}" in
pre)
rm usr/share/terminfo/s/st
rm usr/share/terminfo/s/st-meta
rm usr/share/terminfo/s/st-meta-256color
rm usr/share/terminfo/s/st-256color
;;
esac

27
srcpkgs/xst/template Normal file
View file

@ -0,0 +1,27 @@
# Template file for 'xst'
pkgname=xst
version=0.7.1
revision=1
build_style=gnu-makefile
make_use_env=compliant
hostmakedepends="pkg-config"
makedepends="libXft-devel libXext-devel fontconfig-devel"
depends="ncurses"
conflicts="st"
short_desc="St fork with support for xresources"
maintainer="maxice8 <thinkabit.ukim@gmail.com>"
license="MIT"
homepage="https://github.com/neeasade/xst"
distfiles="https://github.com/neeasade/xst/archive/v${version}.tar.gz"
checksum=f8d8de99f48c63f9a68a2d68e7de03a26aad9729c27ae3ce345ab8514ee85ea5
do_install() {
vbin st
vman doc/st.1
vinstall doc/st.info 644 usr/share/terminfo/s st.terminfo
vdoc README.md README
vdoc doc/FAQ
vdoc doc/Xresources
vlicense doc/LICENSE
}