aboutsummaryrefslogtreecommitdiffstats
path: root/community/diff-pdf/APKBUILD
blob: ea1df4540ebbb60815c38f8acba021a55b55efee (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
36
37
38
39
40
41
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
# TODO: Try to build it without GUI.
pkgname=diff-pdf
pkgver=0.2_git20161028
_gitrev=75d63d243155f60cf1794d6a2535c45bcd9c95d6
pkgrel=0
pkgdesc="A simple tool for visually comparing two PDF files"
url="https://vslavik.github.io/diff-pdf/"
arch="all"
license="GPL2"
makedepends="autoconf automake cairo-dev poppler-dev wxgtk-dev"
source="$pkgname-$_gitrev.tar.gz::https://github.com/vslavik/$pkgname/archive/$_gitrev.tar.gz"
builddir="$srcdir/$pkgname-$_gitrev"

prepare() {
	cd "$builddir"
	./bootstrap
}

build() {
	cd "$builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--disable-silent-rules \
		&& make
}

check() {
	cd "$builddir"
	./diff-pdf --help >/dev/null
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

sha512sums="481fb05197a7a3d22e1df695d89666cdf6e3459cca0bbe571206ce9259269515969303843f9b048769d06381303efdd723fa27902d4bd785a67c937b96039519  diff-pdf-75d63d243155f60cf1794d6a2535c45bcd9c95d6.tar.gz"