mirror of
https://github.com/openwrt/packages.git
synced 2025-09-24 06:12:49 +00:00
Simple bump to new release Build system: x86/64 Build-tested: x86/64 Run-tested: x86/64 Signed-off-by: John Audia <therealgraysky@proton.me>
79 lines
1.9 KiB
Makefile
79 lines
1.9 KiB
Makefile
#
|
|
# Copyright (C) 2017 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=jq
|
|
PKG_VERSION:=1.8.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/jqlang/jq/releases/download/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_HASH:=2be64e7129cecb11d5906290eba10af694fb9e3e7f9fc208a311dc33ca837eb0
|
|
|
|
PKG_MAINTAINER:=Marko Ratkaj <markoratkaj@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:jqlang:jq
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--disable-docs \
|
|
--disable-valgrind \
|
|
|
|
define Package/jq/Default
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Lightweight and flexible command-line JSON processor
|
|
URL:=https://jqlang.github.io/jq/
|
|
PROVIDES:=jq
|
|
endef
|
|
|
|
define Package/jq
|
|
$(Package/jq/Default)
|
|
TITLE+= without regex support.
|
|
VARIANT:=noregex
|
|
DEFAULT_VARIANT:=1
|
|
endef
|
|
|
|
define Package/jq/description
|
|
Lightweight and flexible command-line JSON processor.
|
|
This package was compiled without ONIGURUMA regex libary. match/test/sub and related functions are not available.
|
|
endef
|
|
|
|
define Package/jq-full
|
|
$(Package/jq/Default)
|
|
TITLE+= with regex support.
|
|
VARIANT:=regex
|
|
DEPENDS+=+oniguruma
|
|
endef
|
|
|
|
define Package/jq-full/description
|
|
Lightweight and flexible command-line JSON processor.
|
|
This package was compiled with ONIGURUMA regex libary and has full regex support.
|
|
endef
|
|
|
|
ifeq ($(BUILD_VARIANT),noregex)
|
|
CONFIGURE_ARGS += --without-oniguruma
|
|
endif
|
|
|
|
define Package/jq/install/Default
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libjq.so* $(1)/usr/lib
|
|
endef
|
|
|
|
Package/jq/install = $(Package/jq/install/Default)
|
|
Package/jq-full/install = $(Package/jq/install/Default)
|
|
|
|
$(eval $(call BuildPackage,jq))
|
|
$(eval $(call BuildPackage,jq-full))
|