desktop/ktp-auth-handler/PKGBUILD
2012-08-25 23:31:28 +00:00

35 lines
863 B
Bash

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-auth-handler
pkgver=0.5.0
pkgrel=1
pkgdesc="Telepathy contact list application "
arch=('i686' 'x86_64')
url="http://www.kde.org"
license=('GPL')
depends=('ktp-common-internals' 'qjson')
makedepends=('cmake' 'automoc4')
conflicts=('telepathy-kde-auth-handler')
replaces=('telepathy-kde-auth-handler')
provides=('telepathy-kde-auth-handler')
groups=('kde-telepathy')
source=("ftp://mirrors.mit.edu/kde/unstable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
md5sums=('8d9ee2ba9599cf9dc5f1918f9f831f1c')
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
}