desktop/ktp-kded-integration-module/PKGBUILD
2012-08-25 23:31:28 +00:00

35 lines
981 B
Bash

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-kded-integration-module
pkgver=0.5.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=('ktp-common-internals')
makedepends=('cmake' 'automoc4')
conflicts=('telepathy-kde-integration-module')
replaces=('telepathy-kde-integration-module')
provides=('telepathy-kde-integration-module')
groups=('kde-telepathy')
source=("ftp://mirrors.mit.edu/kde/unstable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
md5sums=('7d58eea7678ea86fdf5c48a93cd6362b')
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
}