desktop/telepathy-kde-integration-module/PKGBUILD

38 lines
1.1 KiB
Bash

#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=telepathy-kde-integration-module
pkgver=0.2.0
pkgrel=1
pkgdesc="Workspace integration module - provides several plugins like auto-away, the infamous 'Now listening to...' and also an error handler"
arch=('i686' 'x86_64')
url="http://www.kde.org"
license=('GPL')
depends=('kde-runtime' 'telepathy-qt4')
makedepends=('cmake' 'automoc4')
conflicts=('telepathy-filetransfer-handler-git')
replaces=('telepathy-filetransfer-handler-git')
groups=('telepathy-kde')
source=("ftp://mirrors.mit.edu/kde/unstable/telepathy-kde/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
sha1sums=('5ad3e5786707b624a0f785c6891ed6de4a5d79c7')
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
}