desktop/ktp-auth-handler/PKGBUILD
2012-10-06 19:55:14 +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.1
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=('999df6ecf91300a14ebe6d69e22adbf3')
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
}