b47ec4a49e
New Features - View issue and pull request comment threads - Manage GitHub Actions secrets - Set up git credentials when logging into GitHub CLI Fixes - pr merge: attempt the merge even if mergeability status could not be determined - repo clone: enable cloning repository wikis - Recognize Include directives when parsing ssh config files - Display the new release notice only once per 24 hours
27 lines
603 B
Makefile
27 lines
603 B
Makefile
# $NetBSD: Makefile,v 1.12 2020/12/20 20:12:44 bsiegert Exp $
|
|
|
|
DISTNAME= gh-1.4.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=cli/}
|
|
GITHUB_PROJECT= cli
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://cli.github.com/
|
|
COMMENT= GitHub CLI
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= git-base-[0-9]*:../../devel/git-base
|
|
|
|
GO_BUILD_PATTERN= ./cmd/gh
|
|
CHECK_RELRO_SKIP+= bin/gh
|
|
|
|
INSTALLATION_DIRS+= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/.gopath/bin/gh ${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "go-modules.mk"
|
|
|
|
.include "../../lang/go/go-module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|