2012-01-25 10:06:02 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2012-07-11 07:00:28 +08:00
|
|
|
# maintainer abveritas@chakra-project.org
|
2012-01-25 10:06:02 +08:00
|
|
|
|
|
|
|
pkgname=telepathy-qt
|
2012-07-16 01:42:50 +08:00
|
|
|
pkgver=0.9.3
|
2012-01-25 10:06:02 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A library for Qt-based Telepathy clients."
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://telepathy.freedesktop.org"
|
|
|
|
groups=('telepathy')
|
|
|
|
license=('LGPL')
|
|
|
|
options=('!libtool')
|
2012-07-11 07:00:28 +08:00
|
|
|
depends=('qt' 'telepathy-farstream' 'dbus-python')
|
2012-01-25 10:06:02 +08:00
|
|
|
makedepends=('libxslt' 'python2' 'cmake' 'doxygen')
|
2012-01-25 13:42:39 +08:00
|
|
|
conflicts=('telepathy-qt4')
|
|
|
|
provides=('telepathy-qt4')
|
2012-07-11 07:00:28 +08:00
|
|
|
source=("http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz")
|
2012-07-16 01:42:50 +08:00
|
|
|
md5sums=('94ac93aedf5f6fff49837bc8368e5a37')
|
2012-01-25 10:06:02 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}"
|
|
|
|
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ../${pkgname}-${pkgver} \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
2012-06-03 23:22:08 +08:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
2012-01-25 10:06:02 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}"/build
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|