From 64b530ec65b4792f6c72506ffc487057e17dfcb1 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sun, 23 Jan 2022 20:32:35 -0800 Subject: [PATCH] PPA: Fix libkiwix-dev dependency Our libkiwix packages are "10.0.0~focal" but the ~ means that "10.0.0" is greater than "10.0.0~focal" so the dependency can't be satisfied. Depending on "10.0.0~" will allow "10.0.0~focal" to satisfy the dependency. --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 7f96e10..8b7eb6b 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Build-Depends: debhelper-compat (= 13), pkg-config, qtbase5-dev, qtwebengine5-dev, - libkiwix-dev (>= 10.0.0) + libkiwix-dev (>= 10.0.0~) Standards-Version: 4.5.0 Homepage: https://www.kiwix.org/ Rules-Requires-Root: no