desktop/ktp-kded-integration-module/PKGBUILD
2014-08-24 17:33:17 +00:00

30 lines
787 B
Bash

# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-kded-integration-module
pkgver=0.8.1
pkgrel=2
pkgdesc="Workspace integration module - provides several plugins like auto-away, the infamous 'Now listening to...' and also an error handler"
arch=('x86_64')
url="http://www.kde.org"
license=('GPL')
depends=('ktp-common-internals')
makedepends=('cmake' 'automoc4')
groups=('kde-telepathy')
source=("ftp://mirrors.mit.edu/kde/stable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
md5sums=('d87b80ceb9c16ae3a6416eeca6c0fe01')
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
}