mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-08-12 15:33:42 +08:00
64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-qbittorrent
|
|
PKG_VERSION=1.0
|
|
PKG_RELEASE:=2
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/luci-app-qbittorrent/temple
|
|
SECTION:=luci
|
|
CATEGORY:=LuCI
|
|
SUBMENU:=3. Applications
|
|
TITLE:=qbittorrent-nox for LuCI
|
|
PKGARCH:=all
|
|
DEPENDS:=+qBittorrent
|
|
endef
|
|
|
|
define Package/luci-app-qbittorrent
|
|
$(call Package/luci-app-qbittorrent/temple)
|
|
endef
|
|
|
|
define Package/luci-i18n-qbittorrent-zh-cn
|
|
$(call Package/luci-app-qbittorrent/temple)
|
|
DEPENDS:=+luci-app-qbittorrent
|
|
endef
|
|
|
|
define Package/luci-app-qbittorrent/description
|
|
This package contains LuCI configuration pages for qbittorrent-nox
|
|
endef
|
|
|
|
define Package/luci-i18n-qbittorrent-zh-cn/description
|
|
Translation support for luci-app-qbittorrent - 简体中文 (Simplified Chinese)
|
|
endef
|
|
|
|
define Build/Prepare
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/luci-app-qbittorrent/install
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/model/cbi
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/controller
|
|
|
|
$(INSTALL_CONF) ./src/config/qbittorrent $(1)/etc/config/qbittorrent
|
|
$(INSTALL_BIN) ./src/init.d/qbittorrent $(1)/etc/init.d/qbittorrent
|
|
$(INSTALL_DATA) ./src/cbi/qbittorrent.lua $(1)/usr/lib/lua/luci/model/cbi/qbittorrent.lua
|
|
$(INSTALL_DATA) ./src/controller/qbittorrent.lua $(1)/usr/lib/lua/luci/controller/qbittorrent.lua
|
|
endef
|
|
|
|
define Package/luci-i18n-qbittorrent-zh-cn/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/i18n
|
|
$(INSTALL_DATA) ./src/i18n/*.lmo $(1)/usr/lib/lua/luci/i18n/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,luci-app-qbittorrent))
|
|
$(eval $(call BuildPackage,luci-i18n-qbittorrent-zh-cn))
|