mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
1b13452762
tricky for others to work on the ports tree, this will also bring more visible to portroach of those which are outdated
33 lines
758 B
Makefile
33 lines
758 B
Makefile
COMMENT = nice console editor
|
|
CATEGORIES = editors
|
|
|
|
GH_ACCOUNT = vigna
|
|
GH_PROJECT = ne
|
|
GH_TAGNAME = 3.3.4
|
|
REVISION = 0
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c curses m
|
|
|
|
USE_GMAKE = Yes
|
|
MAKE_FILE = makefile
|
|
MAKE_FLAGS = CC="${CC}" OPTS="${CFLAGS}"
|
|
ALL_TARGET = build
|
|
|
|
NO_TEST = Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/ne ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/ne.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/ne/{macros,syntax}
|
|
${INSTALL_DATA} ${WRKSRC}/syntax/*.jsf ${PREFIX}/share/ne/syntax
|
|
${INSTALL_DATA} ${WRKSRC}/macros/* ${PREFIX}/share/ne/macros
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ne
|
|
${INSTALL_DATA} \
|
|
${WRKSRC}/{README.md,COPYING,NEWS,CHANGES,doc/ne.txt} \
|
|
${PREFIX}/share/doc/ne
|
|
|
|
.include <bsd.port.mk>
|