mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
870 B
Bash
26 lines
870 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
|
# Contributor: Ju Liu <liuju86 at gmail dot com>
|
|
# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
# Contributor: M Rawash <mrawash@gmail.com>
|
|
pkgname=libtelepathy
|
|
pkgver=0.3.3
|
|
pkgrel=4
|
|
pkgdesc="A glib library to ease writing telepathy clients"
|
|
arch=('i686' 'x86_64')
|
|
url="http://telepathy.freedesktop.org"
|
|
license=('LGPL')
|
|
groups=('telepathy')
|
|
depends=('telepathy-glib>=0.7.1')
|
|
makedepends=('pkgconfig' 'python' 'libxslt')
|
|
options=('!libtool')
|
|
source=(http://telepathy.freedesktop.org/releases/libtelepathy/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('490ca1a0c614d4466394b72d43bf7370')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|