Changes: 0.8 --- - Optimize number parsing for large number datasets - Add -F and -R options to allow to specify a different field and record separator - Print \n and \t also when using -F/-R options - Documentation improvements 0.7 --- - Use unlocked I/O by default - Fix gcc warnings - Documentation improvements
18 lines
456 B
Makefile
18 lines
456 B
Makefile
# $NetBSD: Makefile,v 1.7 2021/12/21 14:49:05 leot Exp $
|
|
|
|
DISTNAME= json2tsv-0.8
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= https://codemadness.org/releases/json2tsv/
|
|
|
|
MAINTAINER= leot@NetBSD.org
|
|
HOMEPAGE= https://codemadness.org/git/json2tsv/file/README.html
|
|
COMMENT= Convert JSON to TSV
|
|
LICENSE= isc
|
|
|
|
USE_LANGUAGES= c99
|
|
|
|
MAKE_FLAGS+= PREFIX=${PREFIX:Q}
|
|
MAKE_FLAGS+= MANPREFIX=${PREFIX:Q}/${PKGMANDIR:Q}
|
|
MAKE_FLAGS+= CC=${CC:Q}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|