mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 17:14:35 +08:00
24 lines
707 B
Bash
24 lines
707 B
Bash
# $Id: PKGBUILD 69810 2010-02-22 20:39:06Z ibiru $
|
|
# Maintainer: Ionut Biru <ibiru@archlinux.org>
|
|
pkgname=telepathy-qt4
|
|
pkgver=0.2.2
|
|
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.6.2' 'telepathy-farsight>=0.0.12')
|
|
makedepends=('libxslt' 'python')
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('f92cc8982f5c8d6028dc10f97cc12111')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy \
|
|
--disable-static
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|