From 3ac1fef6919ee8f4dd2d3bcac5c66fabddcefc86 Mon Sep 17 00:00:00 2001 From: sbwml Date: Tue, 16 May 2023 14:31:42 +0800 Subject: [PATCH] qBittorrent-static: fix url --- qBittorrent-static/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qBittorrent-static/Makefile b/qBittorrent-static/Makefile index f6e1b16..84ef380 100644 --- a/qBittorrent-static/Makefile +++ b/qBittorrent-static/Makefile @@ -45,8 +45,8 @@ endef define Download/qbittorrent URL:=https://github.com/userdocs/qbittorrent-nox-static/releases/download/release-$(PKG_VERSION) - URL_FILE:=$(PKG_ARCH)-cmake-icu-qbittorrent-nox - FILE:=qbittorrent-nox + URL_FILE:=$(PKG_ARCH)-qbittorrent-nox + FILE:=$(PKG_ARCH)-qbittorrent-nox-$(PKG_VERSION) HASH:=skip endef @@ -55,7 +55,7 @@ endef define Package/qBittorrent-static/install $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(DL_DIR)/qbittorrent-nox $(1)/usr/bin + $(INSTALL_BIN) $(DL_DIR)/$(PKG_ARCH)-qbittorrent-nox-$(PKG_VERSION) $(1)/usr/bin/qbittorrent-nox endef $(eval $(call Download,qbittorrent))