bdaf4225c9
Termbox is a library that provides a minimalistic API which allows the programmer to write text-based user interfaces. The library is crossplatform and has both terminal-based implementations on *nix operating systems and a winapi console based implementation for windows operating systems. The basic idea is an abstraction of the greatest common subset of features available on all major terminals and other terminal-like APIs in a minimalistic fashion. Small API means it is easy to implement, test, maintain and learn it, that's what makes the termbox a distinct library in its area.
17 lines
488 B
Makefile
17 lines
488 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2016/08/20 09:30:41 bsiegert Exp $
|
|
|
|
BUILDLINK_TREE+= go-termbox
|
|
|
|
.if !defined(GO_TERMBOX_BUILDLINK3_MK)
|
|
GO_TERMBOX_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_CONTENTS_FILTER.go-termbox= ${EGREP} gopkg/
|
|
BUILDLINK_DEPMETHOD.go-termbox?= build
|
|
|
|
BUILDLINK_API_DEPENDS.go-termbox+= go-termbox>=20160808
|
|
BUILDLINK_PKGSRCDIR.go-termbox?= ../../devel/go-termbox
|
|
|
|
.include "../../textproc/go-runewidth/buildlink3.mk"
|
|
.endif # GO_TERMBOX_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -go-termbox
|