summaryrefslogtreecommitdiff
path: root/extra/telepathy-kde-contact-runner/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/telepathy-kde-contact-runner/PKGBUILD')
-rw-r--r--extra/telepathy-kde-contact-runner/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/telepathy-kde-contact-runner/PKGBUILD b/extra/telepathy-kde-contact-runner/PKGBUILD
new file mode 100644
index 000000000..7de5e78f6
--- /dev/null
+++ b/extra/telepathy-kde-contact-runner/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 161458 2012-06-11 18:12:10Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="KRunner plugin for KDE Telepathy"
+arch=('i686' 'x86_64')
+url="http://community.kde.org/Real-Time_Communication_and_Collaboration"
+license=('GPL')
+depends=('telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+groups=('kde-telepathy')
+source=("http://download.kde.org/unstable/kde-telepathy/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2")
+sha1sums=('fe7f7d37740b732f8618b1e6129d4e7f30998b43')
+
+build() {
+ cd "${srcdir}"
+ mkdir build
+ cd build
+ cmake ../${_pkgname}-${pkgver} \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release
+ make
+}
+
+package() {
+ cd "${srcdir}"/build
+ make DESTDIR="${pkgdir}" install
+}