mirror of
https://github.com/1andrevich/homeproxy-hiddify.git
synced 2026-08-05 14:52:31 +00:00
Rebrand the package to luci-app-homeproxy-hiddify across build scripts, Makefile, and CI. Update package metadata (description, origin, maintainer, source) in .github/build-ipk.sh and control file generation. Adjust GitHub Actions artifact pattern to .github/luci-app-homeproxy-hiddify_* in .github/workflows/build-ipk.yml. Update Makefile package name and conffiles definition. Update README: change install command, add opkg architecture note, and include Log and Inbounds example configurations for hiddify-core.
26 lines
602 B
Makefile
26 lines
602 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2022-2023 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_TITLE:=The modern ImmortalWrt proxy platform for ARM64/AMD64
|
|
LUCI_PKGARCH:=all
|
|
LUCI_DEPENDS:= \
|
|
+firewall4 \
|
|
+kmod-nft-tproxy \
|
|
+ucode-mod-digest
|
|
|
|
PKG_NAME:=luci-app-homeproxy-hiddify
|
|
|
|
define Package/luci-app-homeproxy-hiddify/conffiles
|
|
/etc/config/homeproxy
|
|
/etc/homeproxy/certs/
|
|
/etc/homeproxy/ruleset/
|
|
/etc/homeproxy/resources/direct_list.txt
|
|
/etc/homeproxy/resources/proxy_list.txt
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|