diff options
Diffstat (limited to 'extra/kte-collaborative/PKGBUILD')
-rw-r--r-- | extra/kte-collaborative/PKGBUILD | 32 |
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..c6cfb42d5 --- /dev/null +++ b/extra/kte-collaborative/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 197748 2013-10-29 07:58:30Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Antonio Rojas <nqn1976 @ gmail.com> + +pkgname=kte-collaborative +pkgver=0.2.0 +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/stable/${pkgname}/${pkgver}/src/${pkgname}-v${pkgver}.tar.xz") +md5sums=('e96718ed62b3bb315364fd03a4f2b463') + +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 +} |