17eeb48675
# Changes ## 2020-12-22 (2.5.1) * Restore the compatibility for constants of JSON class. ## 2020-12-22 (2.5.0) * Ready to Ractor-safe at Ruby 3.0. ## 2020-12-17 (2.4.1) * Restore version.rb with 2.4.1 ## 2020-12-15 (2.4.0) * Implement a freeze: parser option #447 * Fix an issue with generate_pretty and empty objects in the Ruby and Java implementations #449 * Fix JSON.load_file doc #448 * Fix pure parser with unclosed arrays / objects #425 * bundle the LICENSE file in the gem #444 * Add an option to escape forward slash character #405 * RDoc for JSON #439 #446 #442 #434 #433 #430
18 lines
468 B
Makefile
18 lines
468 B
Makefile
# $NetBSD: Makefile,v 1.31 2021/03/07 14:30:42 taca Exp $
|
|
|
|
DISTNAME= json_pure-2.5.1
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/_/-/g}
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://flori.github.com/json
|
|
COMMENT= Pure Ruby implementation of JSON
|
|
LICENSE= ruby-license
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-extract:
|
|
cd ${WRKSRC}; ${FIND} . -xdev -type f -print | ${XARGS} ${CHMOD} g-w
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|