550d17140c
Changes in 1.2.1: - Fixed: extraneous error message due to switch fallthrough. Changes in 1.2: - Added: yaml-json to convert YAML back into JSON. Doesn't suport YAML aliases yet. - Changed: Makefile no longer hardcodes /usr/local/{include,lib}. - Changed: no longer requires nonstandard libc headers (err.h). - Changed: small documentation tweaks. - Removed: cleanup function; let OS handle it. - Removed: version number from usage output.
17 lines
496 B
Makefile
17 lines
496 B
Makefile
# $NetBSD: Makefile,v 1.4 2020/01/01 01:19:00 sjmulder Exp $
|
|
|
|
DISTNAME= json-yaml-1.2.1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=sjmulder/}
|
|
|
|
MAINTAINER= sjmulder@NetBSD.org
|
|
HOMEPAGE= https://github.com/sjmulder/json-yaml/
|
|
COMMENT= Convert JSON to YAML and back
|
|
LICENSE= 2-clause-bsd
|
|
|
|
INSTALL_MAKE_FLAGS+= MANPREFIX=${PREFIX}/${PKGMANDIR}
|
|
TEST_TARGET= check
|
|
|
|
.include "../../textproc/libyaml/buildlink3.mk"
|
|
.include "../../devel/yajl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|