Glide is a tool for managing the vendor directory within a Go package. This feature, first introduced in Go 1.5, allows each package to have a vendor directory containing dependent packages for the project. These vendor packages can be installed by a tool (e.g. glide), similar to go get or they can be vendored and distributed with the package. ok abieber@
26 lines
411 B
Makefile
26 lines
411 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2018/06/22 13:54:23 landry Exp $
|
|
|
|
COMMENT = package manager for Go
|
|
|
|
VERSION = 0.13.1
|
|
GH_ACCOUNT = Masterminds
|
|
GH_PROJECT = glide
|
|
GH_TAGNAME = v${VERSION}
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://glide.sh/
|
|
|
|
MAINTAINER = Kevin Wondratsch <bsd@kwondratsch.com>
|
|
|
|
WANTLIB += c pthread
|
|
|
|
#MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/go
|
|
|
|
SEPARATE_BUILD = Yes
|
|
|
|
.include <bsd.port.mk>
|