desktop/ktp-call-ui/PKGBUILD

36 lines
1006 B
Bash
Raw Normal View History

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=ktp-call-ui
2012-10-07 03:55:14 +08:00
pkgver=0.5.1
pkgrel=1
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'
2012-06-15 00:50:02 +08:00
'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")
2012-10-07 03:55:14 +08:00
md5sums=('e7f3662ded745ac643b6732d85cb2638')
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
}