- Create standalone web UI at /peertube-analyse/ - Add CGI backend (peertube-analyse, peertube-analyse-status) - Add RPCD methods: analyse, analyse_status - Update portal with Intelligence & Analyse section - Expose via analyse.gk2.secubox.in with SSL Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
55 lines
1.6 KiB
Makefile
55 lines
1.6 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=secubox-app-peertube
|
|
PKG_RELEASE:=1
|
|
PKG_VERSION:=1.1.0
|
|
PKG_ARCH:=all
|
|
PKG_MAINTAINER:=CyberMind Studio <contact@cybermind.fr>
|
|
PKG_LICENSE:=AGPL-3.0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/secubox-app-peertube
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
PKGARCH:=all
|
|
SUBMENU:=SecuBox Apps
|
|
TITLE:=SecuBox PeerTube Video Platform
|
|
DEPENDS:=+lxc +lxc-common +wget-ssl +tar +jsonfilter
|
|
endef
|
|
|
|
define Package/secubox-app-peertube/description
|
|
PeerTube federated video streaming platform.
|
|
Runs in an LXC Debian container with PostgreSQL, Redis, and Node.js.
|
|
Supports video hosting, live streaming, and ActivityPub federation.
|
|
Includes peertube-analyse: transcript extraction and Claude AI analysis.
|
|
endef
|
|
|
|
define Package/secubox-app-peertube/conffiles
|
|
/etc/config/peertube
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/secubox-app-peertube/install
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/etc/config/peertube $(1)/etc/config/peertube
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/etc/init.d/peertube $(1)/etc/init.d/peertube
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) ./files/usr/sbin/peertubectl $(1)/usr/sbin/peertubectl
|
|
$(INSTALL_BIN) ./files/usr/sbin/peertube-analyse $(1)/usr/sbin/peertube-analyse
|
|
|
|
$(INSTALL_DIR) $(1)/www/peertube-analyse
|
|
$(INSTALL_DATA) ./files/www/peertube-analyse/index.html $(1)/www/peertube-analyse/
|
|
|
|
$(INSTALL_DIR) $(1)/www/cgi-bin
|
|
$(INSTALL_BIN) ./files/www/cgi-bin/peertube-analyse $(1)/www/cgi-bin/
|
|
$(INSTALL_BIN) ./files/www/cgi-bin/peertube-analyse-status $(1)/www/cgi-bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,secubox-app-peertube))
|