Robin Candau pushed to branch main at Arch Linux / Packaging / Packages /
pdfgrep
Commits:
958817a5 by Robin Candau at 2025-01-02T19:54:32+01:00
upgpkg: 2.2.0-5: Poppler 25.01.0 rebuild
Added ./autogen.sh during build(), otherwise fails with:
checking for libgcrypt-config... no
checking for LIBGCRYPT - version >= 1.0.0... no
configure: error: *** libgcrypt not found!
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,12 +1,13 @@
pkgbase = pdfgrep
pkgdesc = A tool to search text in PDF files
pkgver = 2.2.0
- pkgrel = 4
+ pkgrel = 5
url = https://pdfgrep.org
arch = x86_64
license = GPL-2.0-or-later
depends = pcre2
depends = poppler
+ depends = libgcrypt
source = https://pdfgrep.org/download/pdfgrep-2.2.0.tar.gz
sha256sums =
0661e531e4c0ef097959aa1c9773796585db39c72c84a02ff87d2c3637c620cb
=====================================
PKGBUILD
=====================================
@@ -5,20 +5,22 @@
pkgname=pdfgrep
pkgver=2.2.0
-pkgrel=4
+pkgrel=5
pkgdesc='A tool to search text in PDF files'
arch=(x86_64)
url='https://pdfgrep.org'
# url='https://gitlab.com/pdfgrep/pdfgrep'
license=(GPL-2.0-or-later)
depends=(pcre2
- poppler)
+ poppler
+ libgcrypt)
_archive="$pkgname-$pkgver"
source=("$url/download/$_archive.tar.gz")
sha256sums=('0661e531e4c0ef097959aa1c9773796585db39c72c84a02ff87d2c3637c620cb')
build() {
cd "$_archive"
+ ./autogen.sh
./configure --prefix=/usr
make
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/pdfgrep/-/commit/958817a5ba46c56bd2e84d91d565dd46bd3af44e
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/pdfgrep/-/commit/958817a5ba46c56bd2e84d91d565dd46bd3af44e
You're receiving this email because of your account on gitlab.archlinux.org.