mirror of
https://github.com/openwrt/packages.git
synced 2025-07-16 08:14:48 +00:00
This commit updates fx to version 36.0.3 For more details, please refer to release details: https://github.com/antonmedv/fx/releases/tag/36.0.3 Signed-off-by: Fabian Lipken <dynasticorpheus@gmail.com>
39 lines
989 B
Makefile
39 lines
989 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=fx
|
|
PKG_VERSION:=36.0.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/antonmedv/fx/tar.gz/$(PKG_VERSION)?
|
|
PKG_HASH:=1159bc6b556d39843f7e786b06ad8918e4d1a6e64f21539598d3a72dbbc9b1c7
|
|
|
|
PKG_MAINTAINER:=Fabian Lipken <dynasticorpheus@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_DEPENDS:=golang/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
GO_PKG:=github.com/antonmedv/fx
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../lang/golang/golang-package.mk
|
|
|
|
define Package/fx
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Terminal JSON viewer & processor
|
|
URL:=https://github.com/antonmedv/fx/
|
|
DEPENDS:=$(GO_ARCH_DEPENDS)
|
|
endef
|
|
|
|
define Package/fx/description
|
|
Fx is a dual-purpose command-line tool tailored for JSON, providing
|
|
both a terminal-based JSON viewer and a JSON processing utility.
|
|
endef
|
|
|
|
$(eval $(call GoBinPackage,fx))
|
|
$(eval $(call BuildPackage,fx))
|