diff options
Diffstat (limited to 'nonprism/kdepim-runtime/PKGBUILD')
-rw-r--r-- | nonprism/kdepim-runtime/PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/nonprism/kdepim-runtime/PKGBUILD b/nonprism/kdepim-runtime/PKGBUILD new file mode 100644 index 000000000..fd33567cd --- /dev/null +++ b/nonprism/kdepim-runtime/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 220565 2014-08-22 17:27:51Z andrea $ +# Maintainer (Arch): Andrea Scarpino <andrea@archlinux.org> +# Contributor (Arch): Pierre Schmitz <pierre@archlinux.de> +# Maintainer: André Silva <emulatorman@parabola.nu> + +pkgname=kdepim-runtime +pkgver=4.14.0 +pkgrel=3.nonprism1 +pkgdesc='Extends the functionality of kdepim, without libkgapi and libkfbapi support' +arch=('i686' 'x86_64' 'mips64el') +url='https://projects.kde.org/projects/kde/kdepim-runtime' +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime' 'libkolab' 'libaccounts-qt' 'signon') +makedepends=('cmake' 'automoc4' 'boost') +install="${pkgname}.install" +replaces=('kdepim-runtime-coherence' 'kdepim-runtime-nonprism') +conflicts=(kdepim-runtime-nonprism) +source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") +sha1sums=('6cb3b92d57343872ddfc6ba24b5ebdd005126fa2') + +prepare() { + mkdir build +} + +build() { + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DKDE4_BUILD_TESTS=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} |