blob: a802c74c1d533780fe10520c17e46e70089950a7 (
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
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Marcell Meszaros < marcell.meszaros AT runbox.eu >
pkgname=diff-pdf
pkgver=0.5.2
pkgrel=1
pkgdesc='A simple tool for visually comparing two PDF files'
arch=(x86_64)
url="http://vslavik.github.io/$pkgname"
_url="https://github.com/vslavik/$pkgname"
license=(GPL)
depends=(poppler-glib
wxwidgets-gtk3)
makedepends=(wxwidgets-common)
_archive="$pkgname-$pkgver"
source=("$_url/releases/download/v$pkgver/$_archive.tar.gz")
sha256sums=('7d018f05e30050a2b49dee137f084584b43aec87c7f5ee9c3bbd14c333cbfd54')
prepare() {
cd "$_archive"
./bootstrap
# Use /usr/share/aclocal/wxwin.m4 from wxwidgets-common
rm -f admin/wxwin.m4
cp /usr/share/aclocal/wxwin.m4 admin
}
build() {
cd "$_archive"
./configure --prefix /usr \
--with-wx-config=wx-config
make
}
package() {
cd "$_archive"
make DESTDIR="$pkgdir" install
}
|