mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
27 lines
538 B
Makefile
27 lines
538 B
Makefile
PORTNAME= shfmt
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 3.3.1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= adamw@FreeBSD.org
|
|
COMMENT= Shell script formatter
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= scdoc:textproc/scdoc
|
|
|
|
USES= go:modules
|
|
GO_MODULE= mvdan.cc/sh/v3
|
|
GO_TARGET= ./cmd/shfmt
|
|
GO_BUILDFLAGS= -ldflags="-s -w -X main.version=${DISTVERSIONFULL}"
|
|
|
|
PLIST_FILES= bin/shfmt \
|
|
man/man1/shfmt.1.gz
|
|
|
|
post-install:
|
|
scdoc < ${WRKSRC}/cmd/shfmt/shfmt.1.scd \
|
|
> ${STAGEDIR}${MAN1PREFIX}/man/man1/shfmt.1
|
|
|
|
.include <bsd.port.mk>
|