31 lines
507 B
Makefile
31 lines
507 B
Makefile
COMMENT = shell parser, formatter, and interpreter
|
|
|
|
MODGO_MODNAME = mvdan.cc/sh/v3
|
|
MODGO_VERSION = v3.5.1
|
|
REVISION = 0
|
|
|
|
DISTNAME = shfmt-${MODGO_VERSION}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/mvdan/sh
|
|
|
|
# BSD-3
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MODULES = lang/go
|
|
|
|
BUILD_DEPENDS = textproc/groff \
|
|
textproc/scdoc
|
|
|
|
do-install:
|
|
( cd ${WRKSRC} && scdoc < cmd/shfmt/shfmt.1.scd > \
|
|
${PREFIX}/man/man1/shfmt.1 )
|
|
${MODGO_INSTALL_TARGET}
|
|
|
|
.include "modules.inc"
|
|
|
|
.include <bsd.port.mk>
|