forked from Lainports/freebsd-ports
- Remove custom build/install targets left in place after r505321 - Switch to the new GO_TARGET tuple syntax introduced in r512001 - Switch to go:modules when upstream already uses them Reviewed by: tobik Approved by: araujo (mentor), portmgr (adamw) Differential Revision: https://reviews.freebsd.org/D21741
23 lines
403 B
Makefile
23 lines
403 B
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cli53
|
|
DISTVERSION= 0.8.15
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= meta@FreeBSD.org
|
|
COMMENT= Command line tool for Amazon Route 53
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= barnybug
|
|
|
|
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME}
|
|
GO_TARGET= ./cmd/cli53
|
|
|
|
PLIST_FILES= bin/cli53
|
|
|
|
.include <bsd.port.mk>
|