mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-23 01:21:46 +01:00
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
# 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"
|