summaryrefslogtreecommitdiff
path: root/repo/util/pdfgrep/pdfgrep.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-07 13:50:28 +0100
committerdavidovski <david@davidovski.xyz>2022-05-07 13:50:28 +0100
commit213021de0aaf5439db7d58ca1447db4ae6af92be (patch)
treea2adcfe44a186f9a61b92c5ca80d38b6f4017fa0 /repo/util/pdfgrep/pdfgrep.xibuild
parentfd7adb2f3a9d9d239c90742366aec369966a3a03 (diff)
added tor and xss-lock
Diffstat (limited to 'repo/util/pdfgrep/pdfgrep.xibuild')
-rw-r--r--repo/util/pdfgrep/pdfgrep.xibuild23
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/util/pdfgrep/pdfgrep.xibuild b/repo/util/pdfgrep/pdfgrep.xibuild
new file mode 100644
index 0000000..d4f5362
--- /dev/null
+++ b/repo/util/pdfgrep/pdfgrep.xibuild
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+NAME="pdfgrep"
+DESC="Commandline utility to search text in PDF files"
+
+MAKEDEPS="make "
+DEPS="musl pcre poppler "
+
+PKG_VER=2.1.2
+SOURCE="https://pdfgrep.org/download/pdfgrep-$PKG_VER.tar.gz"
+
+build () {
+ ./configure \
+ --prefix=/usr \
+ --bindir=/usr/bin \
+ --sysconfdir=/etc \
+ --disable-static
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}