summaryrefslogtreecommitdiff
path: root/extra/telepathy-kde-contact-runner
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-06-13 00:01:51 +0000
committerroot <root@rshg054.dnsready.net>2012-06-13 00:01:51 +0000
commitf46e734fbcd0b4cbae2cff1a017b95e4e8e02d53 (patch)
tree155102fee24f637e46976eb759175c3c2fbc1f40 /extra/telepathy-kde-contact-runner
parentfd4cd23b679e620a51c42e87a0655d55704fdba8 (diff)
Wed Jun 13 00:01:51 UTC 2012
Diffstat (limited to 'extra/telepathy-kde-contact-runner')
-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
+}