mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 02:11:19 +08:00
63 lines
1.8 KiB
Makefile
63 lines
1.8 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=qBittorrent
|
|
PKG_VERSION:=5.2.3
|
|
PKG_RELEASE:=4
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/qbittorrent/qBittorrent/tar.gz/release-$(PKG_VERSION)?
|
|
PKG_HASH:=skip
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-release-$(PKG_VERSION)
|
|
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:qbittorrent:qbittorrent
|
|
|
|
PKG_BUILD_DEPENDS:=qt6tools/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/qbittorrent
|
|
SUBMENU:=BitTorrent
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=A BitTorrent client in Qt
|
|
URL:=https://www.qbittorrent.org/
|
|
DEPENDS:=+libtorrent-rasterbar +libQt6Core +libQt6Network +libQt6Sql \
|
|
+libQt6Xml +qt6-plugin-libqopensslbackend +qt6-plugin-libqsqlite
|
|
endef
|
|
|
|
define Package/qbittorrent/description
|
|
qBittorrent is a bittorrent client programmed in C++ / Qt that uses
|
|
libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.
|
|
It aims to be a good alternative to all other bittorrent clients out
|
|
there. qBittorrent is fast, stable and provides unicode support as
|
|
well as many features.
|
|
endef
|
|
|
|
define Package/qbittorrent/conffiles
|
|
/etc/config/qbittorrent
|
|
/etc/qBittorrent/
|
|
endef
|
|
|
|
CMAKE_OPTIONS+= \
|
|
-DGUI=OFF \
|
|
-DQT6=ON \
|
|
-DSTACKTRACE=OFF \
|
|
-DWEBUI=ON \
|
|
-DQT_ADDITIONAL_PACKAGES_PREFIX_PATH=$(STAGING_DIR_HOSTPKG)
|
|
|
|
define Package/qbittorrent/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/qbittorrent-nox $(1)/usr/bin
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) $(CURDIR)/files/qbittorrent.config $(1)/etc/config/qbittorrent
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) $(CURDIR)/files/qbittorrent.init $(1)/etc/init.d/qbittorrent
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,qbittorrent))
|