desktop/ktp-call-ui/PKGBUILD
2012-12-18 03:04:19 +00:00

36 lines
999 B
Bash

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-call-ui
pkgver=0.5.2
pkgrel=1
pkgdesc="Telepathy call handler "
arch=('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' 'gstreamer0.10-ugly-plugins'
'gstreamer0.10-bad-plugins' 'gstreamer0.10-ffmpeg' )
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=('fabfbf74325c3761840dfdcdf6484076')
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
}