desktop/ktp-kded-integration-module/PKGBUILD
2013-08-07 16:52:04 +00:00

30 lines
787 B
Bash

# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-kded-integration-module
pkgver=0.6.3
pkgrel=1
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=('339f92dff30d28a502a5851ddd082e9f')
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
}