9603f67978
filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. WWW: http://stedolan.github.com/jq/ PR: ports/173256 Submitted by: Jui-Nan Lin <jnlin@csie.nctu.edu.tw> Feature safe: yes
24 lines
437 B
Makefile
24 lines
437 B
Makefile
# Created by: Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jq
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= jnlin@csie.nctu.edu.tw
|
|
COMMENT= Lightweight and flexible command-line JSON processor
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= stedolan
|
|
GH_TAGNAME= jq-${PORTVERSION}
|
|
GH_COMMIT= bf61e95
|
|
|
|
USE_GMAKE= yes
|
|
USE_CSTD= gnu99
|
|
|
|
PLIST_FILES= bin/jq
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/jq ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|