wok-undigest annotate 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
rev   line source
paul@1197 1 # SliTaz package receipt.
paul@1197 2
paul@1197 3 PACKAGE="pdfgrep"
paul@1197 4 VERSION="1.4.1"
paul@1197 5 CATEGORY="office"
paul@1197 6 SHORT_DESC="A tool to search text in PDF files."
paul@1197 7 MAINTAINER="paul@slitaz.org"
paul@1197 8 LICENSE="GPL2"
paul@1197 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@1197 10 WEB_SITE="https://pdfgrep.org/"
paul@1197 11 WGET_URL="https://pdfgrep.org/download/$TARBALL"
paul@1197 12
paul@1197 13 DEPENDS="poppler pcre"
paul@1202 14 BUILD_DEPENDS="poppler-dev pcre-dev wget asciidoc"
paul@1197 15
paul@1197 16 # Rules to configure and make the package.
paul@1197 17 compile_rules()
paul@1197 18 {
paul@1197 19 ./configure \
paul@1197 20 --prefix=/usr \
paul@1197 21 $CONFIGURE_ARGS &&
paul@1197 22 make &&
paul@1197 23 make DESTDIR=$DESTDIR install
paul@1197 24 }
paul@1197 25
paul@1197 26 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@1197 27 genpkg_rules()
paul@1197 28 {
paul@1197 29 mkdir -p $fs/usr
paul@1197 30 cp -a $install/usr/bin $fs/usr
paul@1197 31 }
paul@1197 32