blob: 4a1a55f5293ff1f72232be80fe3efa501e10beb5 (
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
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Marcell Meszaros < marcell.meszaros AT runbox.eu >
pkgname=diff-pdf
pkgver=0.5
pkgrel=4
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
wxgtk3)
_archive="$pkgname-$pkgver"
source=("$_url/releases/download/v$pkgver/$_archive.tar.gz")
sha256sums=('e7b8414ed68c838ddf6269d11abccdb1085d73aa08299c287a374d93041f172e')
prepare() {
cd "$_archive"
./bootstrap
}
build() {
cd "$_archive"
./configure --prefix /usr \
--with-wx-config=wx-config-gtk3
make
}
package() {
cd "$_archive"
make DESTDIR="$pkgdir" install
}
|