- Add missing 'define Build/Compile' to script-only packages: - secubox-app-config-vault - secubox-app-gotosocial - secubox-app-ipblocklist - secubox-app-ksmbd - secubox-app-qbittorrent - secubox-app-talk-hpb - secubox-app-vhost-manager - secubox-app-webtorrent - secubox-avatar-tap - secubox-core-users - secubox-dpi-dual - secubox-app-backup - Fix luci-app-interceptor: Add missing BuildPackage call - Fix luci-app-master-link: Correct RPCD handler filename (underscore → dash) - Fix luci-app-config-vault: Add Build/Compile definition - Create secubox-console Makefile (new package for remote management) - Create secubox-app-backup cron job file - Update secubox-app-repo: Change feed URLs from local IP (192.168.255.1:8888) to repo.secubox.in domain with HTTPS and proper src/gz format Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=secubox-app-vhost-manager
|
|
PKG_VERSION:=1.0.0
|
|
PKG_RELEASE:=1
|
|
PKG_MAINTAINER:=SecuBox <support@secubox.io>
|
|
PKG_LICENSE:=GPL-3.0
|
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/secubox-app-vhost-manager
|
|
SECTION:=secubox
|
|
CATEGORY:=SecuBox
|
|
TITLE:=SecuBox Centralized VHost Manager
|
|
DEPENDS:=+secubox-core
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/secubox-app-vhost-manager/description
|
|
Centralized virtual host management for SecuBox.
|
|
Orchestrates HAProxy, DNS, Tor, Mesh, and mitmproxy from a single interface.
|
|
endef
|
|
|
|
define Package/secubox-app-vhost-manager/conffiles
|
|
/etc/config/vhosts
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/secubox-app-vhost-manager/install
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/etc/config/vhosts $(1)/etc/config/vhosts
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) ./files/usr/sbin/secubox-vhost $(1)/usr/sbin/secubox-vhost
|
|
$(INSTALL_DIR) $(1)/usr/lib/vhost-manager
|
|
$(INSTALL_DATA) ./files/usr/lib/vhost-manager/*.sh $(1)/usr/lib/vhost-manager/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,secubox-app-vhost-manager))
|