desktop/ktp-kded-integration-module/PKGBUILD

35 lines
976 B
Bash
Raw Normal View History

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-kded-integration-module
2012-12-18 11:04:19 +08:00
pkgver=0.5.2
2012-10-07 03:55:14 +08:00
pkgrel=1
pkgdesc="Workspace integration module - provides several plugins like auto-away, the infamous 'Now listening to...' and also an error handler"
2012-12-18 11:04:19 +08:00
arch=('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')
2012-12-18 11:04:19 +08:00
source=("ftp://mirrors.mit.edu/kde/unstable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.1.tar.bz2")
md5sums=('b6bc90e5b554665690372b156ba50aea')
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
}