pkgsrc/devel/go-mapstructure-bep/Makefile
ryoon 57befe949d devel/go-mapstructure-bep: import go-mapstructure-bep-0.0.20180511
mapstructure is a Go library for decoding generic map values to structures and
vice versa, while providing helpful error handling.

This library is most useful when decoding values from some data stream (JSON,
Gob, etc.) where you don't quite know the structure of the underlying data
until you read a part of it. You can therefore read a map[string]interface{}
and use this library to decode it into the proper underlying native Go
structure.
2018-11-18 08:06:21 +00:00

19 lines
607 B
Makefile

# $NetBSD: Makefile,v 1.1 2018/11/18 08:06:21 ryoon Exp $
DISTNAME= mapstructure-bep-0.0.20180511
PKGNAME= go-${DISTNAME}
MASTER_SITES= ${MASTER_SITE_GITHUB:=bep/}
CATEGORIES= devel
GITHUB_TAG= bb74f1db0675b241733089d5a1faa5dd8b0ef57b
GITHUB_PROJECT= ${PKGBASE:S/^go-//:S/-bep//}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/bep/mapstructure
COMMENT= Library for decoding generic map values into native structures
LICENSE= mit
GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG}
GO_SRCPATH= github.com/bep/mapstructure
.include "../../lang/go/go-package.mk"
.include "../../mk/bsd.pkg.mk"