freebsd-ports/devel/libvterm/Makefile
Dmitry Marakasov aa3d2fad42 Abstract C99 library which implements a VT220 or xterm-like terminal emulator.
It doesn't use any particular graphics toolkit or output system,
instead it invokes callback function pointers that its
embedding program should provide it to draw on its behalf.
It avoids calling malloc() during normal running state,
allowing it to be used in embedded kernel situations.

WWW: http://www.leonerd.org.uk/code/libvterm/

PR:		198712
Submitted by:	antont@inbox.lv
2015-05-28 09:58:54 +00:00

30 lines
716 B
Makefile

# Created by: Anton tornqvist <antont@inbox.lv>
# $FreeBSD$
PORTNAME= libvterm
PORTVERSION= git20150527
CATEGORIES= devel
MAINTAINER= antont@inbox.lv
COMMENT= Implementation of a VT220/xterm/ECMA-48 terminal emulator
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITHUB= yes
GH_ACCOUNT= neovim
GH_TAGNAME= 1b745d2
USES= gmake libtool:build perl5
USE_LDCONFIG= yes
pre-build:
${REINPLACE_CMD} -e 's|$$(LIBDIR)/pkgconfig|${PREFIX}/libdata/pkgconfig|g' ${WRKSRC}/Makefile
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/unterm
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/vterm-ctrl
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/vterm-dump
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libvterm.so
.include <bsd.port.mk>