diff options
author | davidovski <david@davidovski.xyz> | 2022-05-07 13:50:28 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-07 13:50:28 +0100 |
commit | 213021de0aaf5439db7d58ca1447db4ae6af92be (patch) | |
tree | a2adcfe44a186f9a61b92c5ca80d38b6f4017fa0 /repo/util/pdfgrep | |
parent | fd7adb2f3a9d9d239c90742366aec369966a3a03 (diff) |
added tor and xss-lock
Diffstat (limited to 'repo/util/pdfgrep')
-rw-r--r-- | repo/util/pdfgrep/pdfgrep.xibuild | 23 |
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 +} |