mirror of
https://github.com/kenzok8/small-package
synced 2025-01-07 07:06:58 +08:00
update 2024-11-29 11:35:57
This commit is contained in:
parent
742888f8de
commit
410ba19a65
@ -353,7 +353,7 @@ agent_sync_config()
|
|||||||
|
|
||||||
[ "$enabled" = "1" ] && {
|
[ "$enabled" = "1" ] && {
|
||||||
for band in $bands; do
|
for band in $bands; do
|
||||||
wbandstr=$(uci show wireless | grep .band=\'${band}\'$ -m1)
|
for wbandstr in $(uci show wireless | grep .band=\'${band}\'$); do
|
||||||
if test -n "$wbandstr"; then
|
if test -n "$wbandstr"; then
|
||||||
radio=$(echo $wbandstr | cut -d\. -f2)
|
radio=$(echo $wbandstr | cut -d\. -f2)
|
||||||
|
|
||||||
@ -382,7 +382,7 @@ agent_sync_config()
|
|||||||
uci set wireless.wifinet$K.ft_over_ds='1'
|
uci set wireless.wifinet$K.ft_over_ds='1'
|
||||||
uci set wireless.wifinet$K.ft_psk_generate_local='1'
|
uci set wireless.wifinet$K.ft_psk_generate_local='1'
|
||||||
fi
|
fi
|
||||||
if opkg list-installed | grep -q wpad-basic; then
|
if opkg list-installed 2>/dev/null | grep -q wpad-basic || apk list 2>/dev/null | grep wpad-basic | grep -q installed; then
|
||||||
:
|
:
|
||||||
else
|
else
|
||||||
uci set wireless.wifinet$K.bss_transition='1'
|
uci set wireless.wifinet$K.bss_transition='1'
|
||||||
@ -396,6 +396,7 @@ agent_sync_config()
|
|||||||
|
|
||||||
K=$((K+1))
|
K=$((K+1))
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
58
v2ray-geoview/Makefile
Normal file
58
v2ray-geoview/Makefile
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=geoview
|
||||||
|
PKG_VERSION:=0.0.6
|
||||||
|
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:=f0da0db41a886d5a3ad34c0ad7d50eedc32b2e555ca42b65f7117d5cad60fc98
|
||||||
|
|
||||||
|
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:=github.com/snowie2000/geoview
|
||||||
|
|
||||||
|
GO_PKG_LDFLAGS:=-s -w
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
include $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk
|
||||||
|
|
||||||
|
define geoview/templates
|
||||||
|
define Package/$(1)
|
||||||
|
TITLE:=A geofile toolkit ($(1))
|
||||||
|
URL:=https://github.com/snowie2000/geoview
|
||||||
|
SECTION:=net
|
||||||
|
CATEGORY:=Network
|
||||||
|
SUBMENU:=Web Servers/Proxies
|
||||||
|
DEPENDS:=$$(GO_ARCH_DEPENDS)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/$(1)/description
|
||||||
|
geoview is a handy tool to extract useful information from geo* files.
|
||||||
|
|
||||||
|
This package contains the $(1).
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/$(1)/install
|
||||||
|
$$(call GoPackage/Package/Install/Bin,$$(PKG_INSTALL_DIR))
|
||||||
|
|
||||||
|
$$(INSTALL_DIR) $$(1)/usr/bin
|
||||||
|
$$(INSTALL_BIN) $$(PKG_INSTALL_DIR)/usr/bin/$(1) $$(1)/usr/bin/
|
||||||
|
endef
|
||||||
|
endef
|
||||||
|
|
||||||
|
GEOVIEW_COMPONENTS:=geoview
|
||||||
|
|
||||||
|
$(foreach component,$(GEOVIEW_COMPONENTS), \
|
||||||
|
$(eval $(call geoview/templates,$(component))) \
|
||||||
|
$(eval $(call GoBinPackage,$(component))) \
|
||||||
|
$(eval $(call BuildPackage,$(component))) \
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user