blob: 230dc16df52a24134aaa8f72e845e3f51502c5f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: kleintux <reg-archlinux AT klein DOT tuxli DOT ch>
# Contributor: aksr <aksr at t-com dot me>
pkgname=pdfgrep-git
pkgver=2.1.2.r47.g8101228
pkgrel=2
pkgdesc="A commandline utility to search text in PDF files."
arch=('i686' 'x86_64')
url="https://gitlab.com/pdfgrep/pdfgrep/commits/master"
url="https://pdfgrep.org/"
license=('GPL')
depends=('poppler' 'libgcrypt' 'pcre')
makedepends=('git' 'asciidoc')
conflicts=('pdfgrep')
source=("${pkgname}::git+https://gitlab.com/pdfgrep/pdfgrep.git")
md5sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
git describe --long | sed -E 's/([^-]*-g)/r\1/;s/-/./g;s/^v//'
}
build() {
cd "${srcdir}/${pkgname}"
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}"
make DESTDIR="${pkgdir}/" install
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname%-*}/COPYING
}
|