summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e0b4ee2b27316a32275030da3ad27c5df573eba7 (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
# Maintainer: Silas Henrique <silash35@gmail.com>
pkgname=qpdftools
pkgver=1.3
pkgrel=1
epoch=0
pkgdesc="Qpdf Tools is an easy-to-use Qt interface for Ghostscript and Stapler"
arch=(x86_64)
url="https://github.com/silash35/qpdftools"
license=('Unlicense')
depends=('ghostscript' 'stapler' 'qt5-base' 'qt5-svg' 'breeze-icons')
makedepends=('git')
provides=(qpdftools)

prepare() {
	git clone https://github.com/silash35/qpdftools.git
}

build() {
	cd qpdftools
	cmake .
	make
}

package() {
	cd qpdftools
	make DESTDIR="$pkgdir/" install
}