From 65af36d3bff75efad9ae4eeeff11294e822d0453 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Thu, 16 Mar 2017 11:57:08 +0100 Subject: testing/diff-pdf: new aport https://vslavik.github.io/diff-pdf/ A simple tool for visually comparing two PDF files --- testing/diff-pdf/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/diff-pdf/APKBUILD (limited to 'testing') diff --git a/testing/diff-pdf/APKBUILD b/testing/diff-pdf/APKBUILD new file mode 100644 index 0000000000..ea1df4540e --- /dev/null +++ b/testing/diff-pdf/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Jakub Jirutka +# Maintainer: Jakub Jirutka +# 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" -- cgit v1.2.3