blob: 1dacdd2ddcbbc99efcea0979e21361c7923a6676 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $FreeBSD$
PORTNAME= mdp
PORTVERSION= 1.0.10
CATEGORIES= misc
MAINTAINER= neel@neelc.org
COMMENT= Command-line based markdown presentation tool
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/COPYING
USE_GITHUB= yes
GH_ACCOUNT= visit1985
USES= gmake ncurses
PLIST_FILES= bin/${PORTNAME}
OPTIONS_DEFINE= DEBUG
DEBUG_MAKE_ARGS+= DEBUG=1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/mdp ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>
|