blob: a340c3d810cb3fad17044b0c59902ab84cb73f73 (
plain)
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
26
27
28
|
PORTNAME= recon
PORTVERSION= 2.4.0
CATEGORIES= devel
PKGNAMEPREFIX= erlang-
MAINTAINER= erlang@FreeBSD.org
COMMENT= Collection of functions and scripts to debug Erlang in production
LICENSE= BSD3CLAUSE
USES= erlang:rebar
USE_GITHUB= yes
GH_ACCOUNT= ferd
ERL_DOCS= README.md doc/*
REBAR_TARGETS= compile doc
OPTIONS_DEFINE= DOCS
post-build:
@${RM} ${WRKSRC}/doc/packages-frame.html
post-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION}/script
${INSTALL_DATA} ${WRKSRC}/script/* ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION}/script
.include <bsd.port.mk>
|