summaryrefslogtreecommitdiff
path: root/libre/kdegraphics-okular/PKGBUILD
blob: 0aabd2a588f3ef239edd8c26e197be0653112087 (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 278584 2016-10-13 15:30:27Z 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.2
pkgrel=1.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=('cf610ee827c0d5a72d97a655667db0f6de5a17e2'
          '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
}