blob: 142a489e679a8a883d40dfb351e947595b9c2478 (
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=2.0
pkgrel=0
epoch=0
pkgdesc="Qpdf Tools is an easy-to-use Qt interface for Ghostscript and QPDF"
arch=(x86_64)
url="https://github.com/silash35/qpdftools"
license=('Unlicense')
depends=('ghostscript' 'qpdf' 'qt5-base' 'qt5-svg' 'breeze-icons')
makedepends=('git' 'cmake')
provides=('qpdftools')
conflicts=('qpdftools-git')
source=("https://github.com/silash35/qpdftools/archive/v$pkgver.tar.gz")
md5sums=('3220ae72d82e25146603e3d341b1f391')
build() {
cd qpdftools-$pkgver
cmake -DCMAKE_BUILD_TYPE=Release .
make
}
package() {
cd qpdftools-$pkgver
make DESTDIR="$pkgdir/" install
}
|