summaryrefslogtreecommitdiff
path: root/kde-unstable/kdegraphics-okular/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2011-11-26 11:56:56 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2011-11-26 11:56:56 +0100
commit0fc7a60c47b41bf54d1f1429fddb6baddb80007c (patch)
tree77f6cc6477ba82a940d83258ffc98e2f26e40284 /kde-unstable/kdegraphics-okular/PKGBUILD
parent47ed35d319764a0de3a242524e037319bd1a52bd (diff)
parent6a642c093f29814cdd0fdefeee3ab9400eae490f (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/ncdu/PKGBUILD extra/gcin/PKGBUILD extra/maxima/PKGBUILD extra/sbcl/PKGBUILD kde-unstable/calligra/PKGBUILD kde-unstable/kdebase-workspace/PKGBUILD
Diffstat (limited to 'kde-unstable/kdegraphics-okular/PKGBUILD')
-rw-r--r--kde-unstable/kdegraphics-okular/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/kde-unstable/kdegraphics-okular/PKGBUILD b/kde-unstable/kdegraphics-okular/PKGBUILD
new file mode 100644
index 000000000..554ca1f62
--- /dev/null
+++ b/kde-unstable/kdegraphics-okular/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 143292 2011-11-24 16:13:32Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=kdegraphics-okular
+pkgver=4.7.80
+pkgrel=1
+pkgdesc='Document Viewer'
+arch=('i686' 'x86_64')
+url="http://kde.org/applications/graphics/okular/"
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'qimageblitz' 'poppler-qt' 'chmlib' 'djvulibre'
+ 'ebook-tools' 'libspectre')
+makedepends=('cmake' 'automoc4')
+optdepends=('kdegraphics-mobipocket: mobipocket support')
+install=${pkgname}.install
+source=("http://download.kde.org/unstable/${pkgver}/src/okular-${pkgver}.tar.bz2")
+sha1sums=('971562ce741fc6d4afb6c80dc405984b77ef7bfa')
+
+build() {
+ cd "${srcdir}"
+ mkdir build
+ cd build
+ cmake ../okular-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}"/build
+ make DESTDIR="${pkgdir}" install
+}