mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
763 B
Bash
24 lines
763 B
Bash
# $Id: PKGBUILD 3182 2009-09-29 13:42:05Z ibiru $
|
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
|
# Contributor: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com
|
|
# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
|
|
pkgname=telepathy-glib
|
|
pkgver=0.9.0
|
|
pkgrel=1
|
|
pkgdesc="GLib bindings for the Telepathy D-Bus protocol"
|
|
arch=('i686' 'x86_64')
|
|
url="http://telepathy.freedesktop.org"
|
|
groups=('telepathy')
|
|
license=('LGPL')
|
|
options=('!libtool')
|
|
depends=('dbus-glib')
|
|
makedepends=('libxslt')
|
|
source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
md5sums=('1ebb5b089db66db42647d62df5194327')
|