blob: c53deb3ad100f4fcb21b1063bdbd5e9593ea090e (
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
|
# $Id: PKGBUILD 282112 2016-11-27 09:41:56Z arojas $
# Maintainer (Arch): Felix Yan <felixonmars@archlinux.org>
# Contributor (Arch): Andrea Scarpino <andrea@archlinux.org>
# Maintainer: André Silva <emulatorman@parabola.nu>
pkgname=kdegraphics-okular
pkgver=16.08.3
pkgrel=2.parabola1
pkgdesc='Document Viewer, with copy-protection anti-feature turn off by default'
arch=('i686' 'x86_64' 'armv7h')
url="http://kde.org/applications/graphics/okular/"
license=('GPL' 'LGPL' 'FDL')
groups=('kde-applications' 'kdegraphics')
depends=('kdebase-runtime' 'qimageblitz' 'chmlib' 'djvulibre' 'libspectre'
'libkexiv2_4' 'poppler-qt4' 'libkscreen4')
makedepends=('cmake' 'automoc4' 'ebook-tools' 'kdegraphics-mobipocket')
optdepends=('ebook-tools: mobi and epub support'
'kdegraphics-mobipocket: mobi support')
source=("http://download.kde.org/stable/applications/${pkgver}/src/okular-${pkgver}.tar.xz"
'turn_off_copy-protection_anti-feature.patch')
sha1sums=('744d78e513f4ab3cad9b8c41c9fd31ac398f15ec'
'f7323d1d39d660785fa71c0365a17795008db819')
prepare() {
mkdir -p build
cd okular-${pkgver}
patch -p1 -i ../turn_off_copy-protection_anti-feature.patch
}
build() {
cd build
cmake ../okular-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DKDE4_BUILD_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX=/usr \
-DWITH_ActiveApp=OFF
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}
|