desktop/ktp-auth-handler/PKGBUILD

35 lines
863 B
Bash
Raw Normal View History

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-auth-handler
2012-10-07 03:55:14 +08:00
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")
2012-10-07 03:55:14 +08:00
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
}