Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
(cherry picked from commit 8d7b7fbfb4
)
37 lines
921 B
Makefile
37 lines
921 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=yq
|
|
PKG_VERSION:=4.23.1
|
|
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:=f55ffb9c6d7926b06d5862eb6a9e9ea942ec2883286df8e2e3d6f0716cc36eed
|
|
|
|
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
|
|
|
|
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))
|