a1993564e0
Ports using USES=php:phpize, php:ext, php:zend, and php:pecl are now flavored. They will automatically get flavors (php56, php70, php71, php72) depending of the versions they support (set with IGNORE_WITH_PHP). As a consequence, ports using USES=pear and USES=horde are also flavored. PR: 226242 Submitted by: mat Exp-run by: antoine Approved by: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D14208
30 lines
562 B
Makefile
30 lines
562 B
Makefile
# Created by: Gasol Wu <gasol.wu@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jq
|
|
PORTVERSION= 0.0.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= gasol.wu@gmail.com
|
|
COMMENT= Jq shared extension for php
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libjq.so:textproc/jq
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= kjdev
|
|
GH_PROJECT= php-ext-jq
|
|
|
|
IGNORE_WITH_PHP= 70 71 72
|
|
USES= php:ext
|
|
|
|
JQ_CMD= ${LOCALBASE}/bin/jq
|
|
|
|
pre-build:
|
|
(${JQ_CMD} -V | ${SED} 's,jq-\(.*\),#define JQ_VERSION "\1",' >> ${WRKSRC}/version.h)
|
|
|
|
.include <bsd.port.mk>
|