desktop/ktp-auth-handler/PKGBUILD

35 lines
892 B
Bash
Raw Normal View History

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-auth-handler
pkgver=0.4.0
pkgrel=1
pkgdesc="Telepathy contact list application "
arch=('i686' 'x86_64')
url="http://www.kde.org"
license=('GPL')
depends=('kde-runtime' 'telepathy-qt' '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=('4e40859e5e0f8f6d400c943de8febd7e')
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
}