fx: add new package
Signed-off-by: Fabian Lipken <dynasticorpheus@gmail.com>
This commit is contained in:
parent
30c94dbd58
commit
c4c1b93f64
1 changed files with 38 additions and 0 deletions
38
utils/fx/Makefile
Normal file
38
utils/fx/Makefile
Normal file
|
@ -0,0 +1,38 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=fx
|
||||
PKG_VERSION:=31.0.0
|
||||
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:=8408047ef42506aac44aa805de209dd64ae4fc084e76bee8e24112ffbdc2d5dc
|
||||
|
||||
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))
|
Loading…
Reference in a new issue