blob: b78cefac6685bda6e9d7417bb1d3988111e1813e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include $(TOPDIR)/rules.mk
PKG_VERSION:=20260313
PKG_RELEASE:=1
PKG_NAME:=luci-app-rustdesk-server
PKG_MAINTAINER:=Guilherme Cardoso <luminoso@gmail.com>
LUCI_TITLE:=LuCI support for RustDesk Server
LUCI_DEPENDS:=+luci-base +rpcd +rpcd-mod-ucode
LUCI_PKGARCH:=all
PKG_LICENSE:=Apache-2.0
define Package/$(PKG_NAME)/conffiles
/etc/config/rustdesk-server
endef
include ../../luci.mk
# call BuildPackage - OpenWrt buildroot signature
$(eval $(call BuildPackage,$(PKG_NAME)))
|