aria2: fix aira2-openssl install failed
authorLunatic Kochiya <[email protected]>
Sat, 3 May 2025 08:47:52 +0000 (16:47 +0800)
committerTianling Shen <[email protected]>
Sat, 3 May 2025 17:51:25 +0000 (01:51 +0800)
Description: fix in full compile a firmware

    pkg_hash_check_unresolved: cannot find dependency aria2-openssl for aria2
    pkg_hash_fetch_best_installation_candidate: Packages for aria2 found, but incompatible with the architectures configured
    satisfy_dependencies_for: Cannot satisfy the following dependencies for luci-app-aria2:
    aria2-openssl
    opkg_install_cmd: Cannot install package luci-app-aria2.

Signed-off-by: Lunatic Kochiya <[email protected]>
net/aria2/Makefile

index 9e3de4b228d78cbfc1d01c0f886c86b7c9078f28..4aa171acc00bda349b34774f0442e0a54c57bb70 100644 (file)
@@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=aria2
 PKG_VERSION:=1.37.0
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=https://github.com/aria2/aria2/releases/download/release-$(PKG_VERSION)/
@@ -108,5 +108,9 @@ define Package/aria2/install
        $(INSTALL_CONF) ./files/aria2.conf $(1)/etc/config/aria2
 endef
 
+define Package/aria2-openssl/install
+       true
+endef
+
 $(eval $(call BuildPackage,aria2))
 $(eval $(call BuildPackage,aria2-openssl))