desktop/telepathy-kde-auth-handler/PKGBUILD

38 lines
1.0 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-auth-handler
pkgver=0.2.0
pkgrel=1
pkgdesc="Telepathy contact list application "
arch=('i686' 'x86_64')
url="http://www.kde.org"
license=('GPL')
depends=('kde-runtime' 'telepathy-qt4')
makedepends=('cmake' 'automoc4')
conflicts=('telepathy-contact-list-git')
replaces=('telepathy-contact-list-git')
groups=('telepathy-kde')
source=("ftp://mirrors.mit.edu/kde/unstable/telepathy-kde/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
sha1sums=('f482134e041541a5d45ff14b9dc6a1fb2db9520c')
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
}