diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2017-11-10 11:22:24 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2017-11-10 11:22:24 +0100 |
commit | 6bafeba8f739c6b60fd105d306e12c1288841050 (patch) | |
tree | add350024d5c6b57c9362fdc75c1444f682e77c8 /libre/okular/PKGBUILD | |
parent | 94c3e1e2e396e25893d83e8f46504ce29c1011f3 (diff) | |
download | abslibre-6bafeba8f739c6b60fd105d306e12c1288841050.tar.gz abslibre-6bafeba8f739c6b60fd105d306e12c1288841050.tar.bz2 abslibre-6bafeba8f739c6b60fd105d306e12c1288841050.zip |
libre/okular: updated to 17.08.3
Diffstat (limited to 'libre/okular/PKGBUILD')
-rw-r--r-- | libre/okular/PKGBUILD | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/libre/okular/PKGBUILD b/libre/okular/PKGBUILD index e36b35655..5e0807986 100644 --- a/libre/okular/PKGBUILD +++ b/libre/okular/PKGBUILD @@ -6,15 +6,17 @@ # Contributor (Arch): Andrea Scarpino <andrea@archlinux.org> pkgname=okular -pkgver=17.08.2 + +pkgver=17.08.3 pkgrel=1.parabola1 -pkgdesc='Document Viewer, with copy-protection anti-feature turn off by default' arch=(i686 x86_64 armv7h) + +pkgdesc="Document Viewer, with copy-protection anti-feature turn off by default" url="https://kde.org/applications/graphics/okular/" license=(GPL LGPL FDL) -groups=(kde-applications kdegraphics) -depends=('djvulibre' 'libspectre' 'libkexiv2' 'poppler-qt5' 'qca-qt5' 'kpty' 'kactivities' 'threadweaver' 'kjs' 'kparts' 'mesa') -makedepends=('extra-cmake-modules' 'ebook-tools' 'kdegraphics-mobipocket' 'kdoctools' 'khtml' 'python' 'chmlib') + +makedepends=(extra-cmake-modules ebook-tools kdegraphics-mobipocket kdoctools khtml python chmlib) +depends=(djvulibre libspectre libkexiv2 poppler-qt5 qca-qt5 kpty kactivities threadweaver kjs kparts mesa) optdepends=('ebook-tools: mobi and epub support' 'kdegraphics-mobipocket: mobi support' 'kirigami2: mobile UI' @@ -23,22 +25,26 @@ optdepends=('ebook-tools: mobi and epub support' 'calligra: ODT and ODP support') conflicts=(kdegraphics-okular) replaces=(kdegraphics-okular) -source=("https://download.kde.org/stable/applications/${pkgver}/src/okular-${pkgver}.tar.xz"{,.sig} +groups=(kde-applications kdegraphics) + +source=("https://download.kde.org/stable/applications/$pkgver/src/okular-$pkgver.tar.xz"{,.sig} 'turn_off_copy-protection_anti-feature.patch') -sha256sums=('c56f57dc47b8c00208e374f3249d2cf69d6293cb9ebfeeb3601f1c64cbc37e56' +sha256sums=('d32e69b6be2a10d0eadc6f616be53dc8dd372c9123a6311628ac3f97b69054fd' 'SKIP' '83cf760b3ae6e03d49e02369375dae3ecc05a6800d512dd9ffeaac1648c19457') -validpgpkeys=('CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7' # Albert Astals Cid <aacid@kde.org> - 'F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87') # Christoph Feck <cfeck@kde.org> +validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org> + F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org> prepare() { mkdir -p build + cd $pkgname-$pkgver - patch -p1 -i ../turn_off_copy-protection_anti-feature.patch + patch -p1 -i $srcdir/turn_off_copy-protection_anti-feature.patch } build() { cd build + cmake ../$pkgname-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ @@ -49,5 +55,6 @@ build() { package() { cd build + make DESTDIR="$pkgdir" install } |