summaryrefslogtreecommitdiff
path: root/extra/kte-collaborative
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-10-28 01:15:28 -0700
committerroot <root@rshg054.dnsready.net>2013-10-28 01:15:28 -0700
commit1a32448c2c53b0e66ce0fe14c5dd2057afd432bc (patch)
treed94819e60d05fada511b43feec6f7e46386a215a /extra/kte-collaborative
parent2886140ddb1db32f36cb0b27e93888442a603a53 (diff)
Mon Oct 28 01:14:27 PDT 2013
Diffstat (limited to 'extra/kte-collaborative')
-rw-r--r--extra/kte-collaborative/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/kte-collaborative/PKGBUILD b/extra/kte-collaborative/PKGBUILD
new file mode 100644
index 000000000..9213a4b64
--- /dev/null
+++ b/extra/kte-collaborative/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 197600 2013-10-27 14:17:27Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: Antonio Rojas <nqn1976 @ gmail.com>
+
+pkgname=kte-collaborative
+pkgver=0.1.80
+pkgrel=1
+pkgdesc="A plugin for KTextEditor which allows to edit text documents collaboratively"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/playground/network/kte-collaborative'
+license=('GPL')
+depends=('libqinfinity' 'telepathy-kde-common-internals')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-v${pkgver}.tar.xz")
+md5sums=('4e5c8e81d02ab1ccb5f0f6b1f739707a')
+
+prepare() {
+ mkdir build
+}
+
+build() {
+ cd build
+ cmake ../${pkgname}-v${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}