b224fdc408
- Pass maintainership to submitter - Silece all explicitly called commands PR: 216765 Submitted by: Demetris Procopiou <dem.procopiou@gmail.com>
29 lines
686 B
Makefile
29 lines
686 B
Makefile
# Created by: Anton tornqvist <antont@inbox.lv>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libvterm
|
|
PORTVERSION= git20161218
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= dem.procopiou@gmail.com
|
|
COMMENT= Implementation of a VT220/xterm/ECMA-48 terminal emulator
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= neovim
|
|
GH_TAGNAME= 224b8dc
|
|
|
|
USES= gmake libtool:build pathfix perl5
|
|
PATHFIX_MAKEFILEIN= Makefile
|
|
USE_LDCONFIG= yes
|
|
MAKE_ARGS= PREFIX=${PREFIX}
|
|
|
|
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>
|