mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
6741e3ad74
- While I'm here, fix indent Changes: https://github.com/barnybug/cli53/blob/master/CHANGELOG.md PR: 219178 Submitted by: Koichiro IWAO <meta+ports@vmeta.jp> (maintainer)
28 lines
514 B
Makefile
28 lines
514 B
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cli53
|
|
PORTVERSION= 0.8.8
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= meta+ports@vmeta.jp
|
|
COMMENT= Command line management of Route53 domains
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= go>=1.5:lang/go
|
|
|
|
USES= go
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= barnybug
|
|
|
|
WRKSRC_SUBDIR= cmd/cli53
|
|
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME}/cmd/cli53
|
|
PLIST_FILES= bin/cli53
|
|
|
|
post-extract:
|
|
@${MKDIR} ${GO_WRKSRC:H:H:H}
|
|
@${LN} -sf ${WRKSRC:H:H} ${GO_WRKSRC:H:H}
|
|
|
|
.include <bsd.port.mk>
|