wok-undigest view pdfgrep/receipt @ rev 1202

pdfgrep (update bdeps)
author Paul Issott <paul@slitaz.org>
date Sun Aug 21 14:45:48 2016 +0100 (2016-08-21)
parents fd7c7dba68b6
children
line source
1 # SliTaz package receipt.
3 PACKAGE="pdfgrep"
4 VERSION="1.4.1"
5 CATEGORY="office"
6 SHORT_DESC="A tool to search text in PDF files."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://pdfgrep.org/"
11 WGET_URL="https://pdfgrep.org/download/$TARBALL"
13 DEPENDS="poppler pcre"
14 BUILD_DEPENDS="poppler-dev pcre-dev wget asciidoc"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }