mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
7fb9acbda8
Changes: https://github.com/ibara/mg/releases/tag/mg-6.8.1 Reported by: GitHub (watch releases)
28 lines
574 B
Makefile
28 lines
574 B
Makefile
# Created by: Dima Dorfman <dima@unixfreak.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mg
|
|
PORTVERSION= 6.8.1
|
|
PORTEPOCH?= 1
|
|
CATEGORIES= editors
|
|
MASTER_SITES= https://github.com/ibara/mg/releases/download/mg-${PORTVERSION}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT?= Small, fast Emacs-like editor
|
|
|
|
LICENSE= PD
|
|
|
|
USES= ncurses
|
|
HAS_CONFIGURE= yes
|
|
PLIST_FILES?= bin/mg \
|
|
man/man1/mg.1.gz
|
|
PORTDOCS= README-Mg README.md tutorial
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|