summaryrefslogtreecommitdiff
path: root/nonprism/kdepim-addons
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-04-25 01:20:24 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-04-25 01:20:24 -0300
commit85ab40a2a529cc74e8812472a71acd2e516922b1 (patch)
tree13aba2468cd5258f1313dfca3ba894de97597e85 /nonprism/kdepim-addons
parent006d107ff0f1dbaf569d877115c8d57c965cf322 (diff)
kdepim-addons: add new package to [nonprism]
Diffstat (limited to 'nonprism/kdepim-addons')
-rw-r--r--nonprism/kdepim-addons/PKGBUILD36
1 files changed, 36 insertions, 0 deletions
diff --git a/nonprism/kdepim-addons/PKGBUILD b/nonprism/kdepim-addons/PKGBUILD
new file mode 100644
index 000000000..98bd9d635
--- /dev/null
+++ b/nonprism/kdepim-addons/PKGBUILD
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 262594 2016-03-26 20:49:29Z arojas $
+# Maintainer (Arch): Antonio Rojas <arojas@archlinux.org>
+# Maintainer: André Silva <emulatorman@parabola.nu>
+
+pkgname=kdepim-addons
+pkgver=16.04.0
+pkgrel=2.nonprism1
+pkgdesc='Addons for KDE PIM applications, without libkgapi support'
+arch=(i686 x86_64)
+url='https://community.kde.org/KDE_PIM'
+license=(GPL LGPL FDL)
+depends=(khtml mailcommon incidenceeditor libktnef)
+makedepends=(extra-cmake-modules kdoctools boost python)
+groups=(kde-applications kdepim)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz")
+sha1sums=('98db45182e13425090f72d89c3fe13034430b56e')
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DBUILD_TESTING=OFF \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}