desktop/ktp-call-ui/PKGBUILD
2012-06-12 22:55:30 +00:00

35 lines
916 B
Bash

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-call-ui
pkgver=0.4.0
pkgrel=3
pkgdesc="Telepathy call handler "
arch=('i686' 'x86_64')
url="http://www.kde.org"
license=('GPL')
depends=('ktp-common-internals' 'telepathy-farstream'
'telepathy-mission-control' 'telepathy-gabble' 'gstreamer0.10-base-plugins'
' gstreamer0.10-good-plugins' 'qt-gstreamer')
makedepends=('boost' 'cmake' 'automoc4' )
groups=('kde-telepathy')
categories=('communication')
source=("ftp://mirrors.mit.edu/kde/unstable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
md5sums=('77aa00101c83ec34dfa689ead783acc6')
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
}