summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 118b39833a9a1bb3276f1b5e4a2d9cfd818f9628 (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
42
43
44
45
46
47
# Maintainer: Gerald Bischof gBischof at gebix dot com
pkgname=pdfmerger
pkgver=1.1.1
pkgrel=1
epoch=
pkgdesc="A simple Qt frontend for poppler's pdfunite"
arch=(x86_64)
url="https://gitlab.com/gBischof/pdfmerger/releases"
license=('GPL3')
groups=()
depends=(poppler qt5-base)
makedepends=(qt5-tools)
checkdepends=()
optdepends=(xdg-utils imagemagick)
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("$pkgname::git+https://gitlab.com/gBischof/pdfmerger.git")
noextract=()
md5sums=('SKIP')
validpgpkeys=()

prepare() {
	cd "$pkgname"
	git checkout -q v$pkgver
}

build() {
	cd "$pkgname"
	qmake
	make
	qmake
}

check() {
	cd "$pkgname"
	make -k check
}

package() {
	cd "$pkgname"
	make INSTALL_ROOT="$pkgdir/" install
}