1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-16 20:33:58 +02:00
openwrt-packages/utils/yq/Makefile
Tianling Shen 4d667ec8e8
yq: Update to 4.30.2
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2022-11-13 23:11:14 +08:00

39 lines
979 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=yq
PKG_VERSION:=4.30.2
PKG_RELEASE:=$(AUTORELEASE)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/mikefarah/yq/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=6dc5001650ee6a3ada4f4464b31da1128f5415c0f0fd8be9aca15e837f7eb90b
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
PKG_BUILD_DEPENDS:=golang/host
PKG_BUILD_PARALLEL:=1
PKG_USE_MIPS16:=0
GO_PKG:=github.com/mikefarah/yq/v4
GO_PKG_LDFLAGS_X:=$(GO_PKG)/cmd.Version=$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk
include ../../lang/golang/golang-package.mk
define Package/yq
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Portable command-line YAML processor
URL:=https://mikefarah.gitbook.io/yq/
DEPENDS:=$(GO_ARCH_DEPENDS)
endef
define Package/yq/description
The aim of the project is to be the jq or sed of yaml files.
endef
$(eval $(call GoBinPackage,yq))
$(eval $(call BuildPackage,yq))