1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

json-yaml is a small command line utility to convert JSON to YAML.

It is useful to get more readable output from web APIs and such.

WWW: https://github.com/sjmulder/json-yaml

PR:		230190
Submitted by:	ik@sjmulder.nl
This commit is contained in:
Guido Falsi 2018-12-27 16:07:22 +00:00
parent b41044254f
commit d07c041ce1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=488547
4 changed files with 32 additions and 0 deletions

View File

@ -378,6 +378,7 @@
SUBDIR += jq
SUBDIR += jrefentry
SUBDIR += jshon
SUBDIR += json-yaml
SUBDIR += kdiff3
SUBDIR += kenlm
SUBDIR += kf5-kcodecs

View File

@ -0,0 +1,24 @@
# $FreeBSD$
PORTNAME= json-yaml
DISTVERSION= 1.1.2
CATEGORIES= textproc
MAINTAINER= ik@sjmulder.nl
COMMENT= Convert JSON to YAML
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.md
LIB_DEPENDS= libyajl.so:devel/yajl \
libyaml.so:textproc/libyaml
MAKE_ARGS+= MANPREFIX=${PREFIX}/man
USE_GITHUB= yes
GH_ACCOUNT= sjmulder
PLIST_FILES= bin/json-yaml \
man/man1/json-yaml.1.gz
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1545817767
SHA256 (sjmulder-json-yaml-1.1.2_GH0.tar.gz) = a3302a0492186225388f13bd1a9bcd0759dfa2d39d2fef9768583de8da3420ad
SIZE (sjmulder-json-yaml-1.1.2_GH0.tar.gz) = 4381

View File

@ -0,0 +1,4 @@
json-yaml is a small command line utility to convert JSON to YAML.
It is useful to get more readable output from web APIs and such.
WWW: https://github.com/sjmulder/json-yaml