mirror of
https://github.com/1andrevich/homeproxy-hiddify.git
synced 2026-08-08 00:06:17 +00:00
Rename project and packages to Re:HomeProxy (luci-app-re-homeproxy), update package metadata and build scripts, and adjust UI labels and menus accordingly. Improve core install flow: add RAM detection, overlay-compression heuristics, automatic selection between full and compact (UPX) builds, stricter storage/RAM checks, and a variant argument for prepare_install; fetch sing-box-extended releases more robustly. Fix runtime behavior: init.d restores a default config when missing, add packaged homeproxy.default, prefer user-preferred core in ucode, and suppress top-level TLS for Shadowsocks in generated client configs. UI tweaks include better install/remove UX, gating "Same as main node" for custom routing, and updated diagnostics/status strings. Update translations (po files) and rpcd/menu/acl renames to match the rebrand.
37 lines
945 B
Makefile
37 lines
945 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2022-2023 ImmortalWrt.org
|
|
# Copyright (C) 2024-2026 1andrevich <1andrevich.recede274@passmail.net>
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_TITLE:=Re:HomeProxy - multi-core proxy platform (fork of ImmortalWrt HomeProxy)
|
|
LUCI_PKGARCH:=all
|
|
LUCI_DEPENDS:= \
|
|
+firewall4 \
|
|
+ucode-mod-digest
|
|
|
|
PKG_NAME:=luci-app-re-homeproxy
|
|
PKG_VERSION:=1
|
|
PKG_RELEASE:=1
|
|
PKG_MAINTAINER:=1andrevich <1andrevich.recede274@passmail.net>
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
define Package/luci-app-re-homeproxy/conffiles
|
|
/etc/config/homeproxy
|
|
/etc/homeproxy/certs/
|
|
/etc/homeproxy/ruleset/
|
|
/etc/homeproxy/resources/direct_list.txt
|
|
/etc/homeproxy/resources/proxy_list.txt
|
|
endef
|
|
|
|
define Package/luci-app-re-homeproxy/postinst
|
|
#!/bin/sh
|
|
[ -n "$$IPKG_INSTROOT" ] || kill -HUP $$(pidof rpcd) 2>/dev/null
|
|
exit 0
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|