mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
26 lines
725 B
Makefile
26 lines
725 B
Makefile
PORTNAME= jira-cli
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.4.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
DIST_SUBDIR= jira-cli
|
|
|
|
MAINTAINER= fox@FreeBSD.org
|
|
COMMENT= Feature-rich Interactive Jira Command Line
|
|
WWW= https://github.com/ankitpokhrel/jira-cli
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= go:modules
|
|
|
|
GO_MODULE= github.com/ankitpokhrel/jira-cli
|
|
GO_BUILDFLAGS= -ldflags="-X github.com/ankitpokhrel/jira-cli/internal/version.Version=v${PORTVERSION} \
|
|
-X github.com/ankitpokhrel/jira-cli/internal/version.BuildDate=$$(date +'%Y-%m-%dT%H:%M:%S%Z') \
|
|
-X github.com/ankitpokhrel/jira-cli/internal/version.GitCommit= "
|
|
GO_TARGET= ./cmd/jira
|
|
|
|
post-install:
|
|
${STAGEDIR}${PREFIX}/bin/jira man -g -o ${STAGEDIR}${MANPREFIX}/man/man7
|
|
|
|
.include <bsd.port.mk>
|