mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 02:07:23 +08:00
25 lines
816 B
Bash
25 lines
816 B
Bash
# $Id: PKGBUILD 78979 2010-04-29 15:58:01Z ibiru $
|
|
# Maintainer: Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com
|
|
# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
|
|
pkgname=telepathy-glib
|
|
pkgver=0.10.5
|
|
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")
|
|
sha256sums=('0d8bd4f900024f768d97c08da973e56348f46739950cf13115b778804b82826d')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|