pkgsrc-wip/libvterm/Makefile
Jonathan Buschmann 891a1d1605 Import libvterm-0.0.0nb20150301 as wip/libvterm.
An abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator.

An 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.
2015-03-01 15:44:34 +00:00

26 lines
687 B
Makefile

# $NetBSD: Makefile,v 1.1 2015/03/01 15:44:34 jonthn Exp $
PKGNAME= libvterm-0.0.0
CATEGORIES= devel
MASTER_SITES= https://github.com/neovim/livterm/archive/
HOMEPAGE= http://www.leonerd.org.uk/code/libvterm/
COMMENT= Abstract VT220/Xterm/ECMA-48 emulation library
LICENSE= mit
GIT_REPOSITORIES= libvterm
GIT_REPO.libvterm= git://github.com/neovim/libvterm.git
GIT_MODULE.libvterm= libvterm
WRKSRC= ${WRKDIR}/${GIT_MODULE.libvterm}
USE_LANGUAGES= c
USE_TOOLS+= pkg-config gmake perl
USE_LIBTOOL= yes
MAKE_FLAGS+= PREFIX=${PREFIX:Q}
MAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMANDIR}
PKGCONFIG_OVERRIDE+= vterm.pc.in
.include "../../wip/mk/git-package.mk"
.include "../../mk/bsd.pkg.mk"