mirror of
https://github.com/openbsd/ports.git
synced 2026-06-19 16:05:12 +02:00
28 lines
569 B
Makefile
28 lines
569 B
Makefile
# $OpenBSD: Makefile,v 1.2 2018/10/25 07:40:51 fcambus Exp $
|
|
|
|
COMMENT = realtime plotting utility for terminals
|
|
|
|
GH_ACCOUNT = tenox7
|
|
GH_PROJECT = ttyplot
|
|
GH_TAGNAME = 1.1
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
MAINTAINER = Frederic Cambus <fcambus@openbsd.org>
|
|
|
|
# Unlicense
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c curses
|
|
|
|
MAKE_FLAGS = CC="${CC}" CFLAGS="${CFLAGS}"
|
|
|
|
NO_TEST = Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ttyplot ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ttyplot
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${PREFIX}/share/doc/ttyplot
|
|
|
|
.include <bsd.port.mk>
|