mirror of
https://github.com/xiaorouji/openwrt-passwall-packages.git
synced 2025-05-01 06:01:21 +08:00
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=geoview
|
|
PKG_VERSION:=0.1.9
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/snowie2000/geoview/tar.gz/$(PKG_VERSION)?
|
|
PKG_HASH:=c071983826e34b22b0d1383e4e778eb28a232dc5b3f9e5d5dd5247972be5ca95
|
|
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_MAINTAINER:=snowie2000
|
|
|
|
PKG_BUILD_DEPENDS:=golang/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_USE_MIPS16:=0
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
GO_PKG:=github.com/snowie2000/geoview
|
|
GO_PKG_BUILD_PKG:=$(GO_PKG)
|
|
|
|
GO_PKG_LDFLAGS:=-s -w
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk
|
|
|
|
define Package/geoview
|
|
TITLE:=A geofile toolkit
|
|
URL:=https://github.com/snowie2000/geoview
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=IP Addresses and Names
|
|
DEPENDS+= $(GO_ARCH_DEPENDS)
|
|
endef
|
|
|
|
define Package/geoview/description
|
|
geoview is a handy tool to extract useful information from geo* files.
|
|
endef
|
|
|
|
define Package/geoview/install
|
|
$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/geoview $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call GoBinPackage,geoview))
|
|
$(eval $(call BuildPackage,geoview))
|