mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:47:13 +08:00
34 lines
832 B
Bash
34 lines
832 B
Bash
# $Id: PKGBUILD 80097 2010-05-11 18:04:26Z ibiru $
|
|
# Maintainer: Ionut Biru <ibiru@archlinux.org>
|
|
pkgname=telepathy-qt4
|
|
pkgver=0.4.1
|
|
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')
|
|
depends=('qt>=4.7.0' 'telepathy-farsight>=0.0.15')
|
|
makedepends=('libxslt' 'python2')
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('aa029f09848b955c01052c18e15def4e')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DHAVE_QDBUSVARIANT_OPERATOR_EQUAL=1
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|