988fd1c73c
hashstructure is a Go library for creating a unique hash value for arbitrary values in Go. This can be used to key values in a hash (for use in a map, set, etc.) that are complex. The most common use case is comparing two values without sending data across the network, caching values locally (de-dup), and so on.
15 lines
495 B
Makefile
15 lines
495 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2018/11/18 08:02:08 ryoon Exp $
|
|
|
|
BUILDLINK_TREE+= go-hashstructure
|
|
|
|
.if !defined(GO_HASHSTRUCTURE_BUILDLINK3_MK)
|
|
GO_HASHSTRUCTURE_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_CONTENTS_FILTER.go-hashstructure= ${EGREP} gopkg/
|
|
BUILDLINK_DEPMETHOD.go-hashstructure?= build
|
|
|
|
BUILDLINK_API_DEPENDS.go-hashstructure+= go-hashstructure>=1.0.0
|
|
BUILDLINK_PKGSRCDIR.go-hashstructure?= ../../devel/go-hashstructure
|
|
.endif # GO_HASHSTRUCTURE_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -go-hashstructure
|