58e8e046f9
Multi-character RS,FS,PS You can process CRLF-terminated DKVP files with mlr --dkvp --rs crlf. You can process LF-terminated CSV files with mlr --csv --rs lf. You can process TSV using mlr --fs tab; you can convert TSV to CSV using mlr --ifs tab --ofs comma. Along with many more possibilities. Please see mlr -h for more information. There is one minor, backward-incompatible change which I felt not worth calling this 3.0.0: default field separator for NIDX format is now space, not comma.
21 lines
557 B
Makefile
21 lines
557 B
Makefile
# $NetBSD: Makefile,v 1.4 2015/09/21 13:25:38 wiz Exp $
|
|
|
|
DISTNAME= miller-2.2.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=johnkerl/}
|
|
GITHUB_PROJECT= miller
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://github.com/johnkerl/miller/
|
|
COMMENT= Command-line CSV processor
|
|
LICENSE= 2-clause-bsd
|
|
|
|
BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
|
|
|
|
BUILDLINK_TRANSFORM+= rm:-Werror
|
|
MAKE_JOBS_SAFE= no
|
|
MAKE_FLAGS+= INSTALLDIR=${DESTDIR}${PREFIX}/bin
|
|
INSTALLATION_DIRS+= bin
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|