blob: d4f536229efa4bcdb5c083a639cec857b29667ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
}
|