summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Dann2023-10-16 12:04:28 +0100
committerPaul Dann2023-10-16 12:04:28 +0100
commit7b746c572ffe95cf046f9bc6bcc7fb6a34f0177c (patch)
tree2aeb511983e4c712bc8fef9e0c9cd2cf94c9ad70
parentc70b5a9a0bf9af3cd4ef11fde5d8df36817844b1 (diff)
downloadaur-7b746c572ffe95cf046f9bc6bcc7fb6a34f0177c.tar.gz
Fix issue with Qt6 lib requirement in chroot build
https://aur.archlinux.org/packages/poppler-qt-lcd#comment-938625
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 56ab9d9d5381..63febc9901cf 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = poppler-qt-lcd
pkgdesc = Poppler Qt bindings, with patches to allow subpixel rendering via Cairo
pkgver = 23.10.0
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/giddie/poppler-cairo-backend
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 56105b3fcb7a..188a3829280a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=poppler-qt-lcd
pkgver=23.10.0
-pkgrel=2
+pkgrel=3
pkgdesc="Poppler Qt bindings, with patches to allow subpixel rendering via Cairo"
license=('GPL')
arch=(i686 x86_64)
@@ -30,8 +30,10 @@ build() {
cd build
cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
- -DENABLE_CPP=OFF -DENABLE_UTILS=OFF \
+ -DENABLE_CPP=OFF \
+ -DENABLE_UTILS=OFF \
-DWITH_GLIB=OFF \
+ -DENABLE_QT6=OFF \
..
make poppler-qt5
}