secubox-openwrt/package/secubox/secubox-app-metablogizer/Makefile
CyberMind-FR fa5d573755 feat(multi): New LuCI apps, MetaBlogizer dual-runtime, service watchdog
- Add luci-app-lyrion: Music server dashboard
- Add luci-app-mailinabox: Email server management
- Add luci-app-nextcloud: Cloud storage dashboard
- Add luci-app-mitmproxy: Security proxy in security section
- Add luci-app-magicmirror2: Smart display dashboard
- Add secubox-app-metablogizer: CLI tool with uhttpd/nginx support
- Update luci-app-metablogizer: Runtime selection, QR codes, social share
- Update secubox-core v0.8.1: Service watchdog (auto-restart crashed services)
- Update haproxyctl: Hostname validation to prevent config errors
- Fix portal.js app discovery

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-27 15:23:53 +01:00

30 lines
764 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=secubox-app-metablogizer
PKG_VERSION:=1.0.0
PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk
define Package/secubox-app-metablogizer
SECTION:=secubox
CATEGORY:=SecuBox
TITLE:=MetaBlogizer Static Site Publisher
DEPENDS:=+git +uhttpd
PKGARCH:=all
endef
define Package/secubox-app-metablogizer/description
Static site publisher with auto-vhost creation.
Supports uhttpd (default) and nginx LXC runtimes.
endef
define Package/secubox-app-metablogizer/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) ./files/usr/sbin/metablogizerctl $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/etc/config/metablogizer $(1)/etc/config/
endef
$(eval $(call BuildPackage,secubox-app-metablogizer))