mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 01:47:16 +08:00
25 lines
779 B
Bash
25 lines
779 B
Bash
|
# $Id: PKGBUILD 65237 2010-01-25 19:10:42Z ibiru $
|
||
|
# Maintainer: Biru Ionut <ionut@archlinux.ro>
|
||
|
# Contributor: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com
|
||
|
# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
|
||
|
pkgname=telepathy-glib
|
||
|
pkgver=0.10.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' '!emptydirs')
|
||
|
depends=('dbus-glib>=0.82')
|
||
|
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=('9e090ec391a79424f0f8876488de3ce6')
|