mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 03:57:15 +08:00
29 lines
782 B
Bash
29 lines
782 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=telepathy-glib
|
|
pkgver=0.23.0
|
|
pkgrel=1
|
|
pkgdesc="GLib bindings for the Telepathy D-Bus protocol"
|
|
arch=('x86_64')
|
|
url="http://telepathy.freedesktop.org"
|
|
groups=('telepathy')
|
|
license=('LGPL2.1')
|
|
options=('!libtool' '!emptydirs')
|
|
depends=('dbus-glib')
|
|
makedepends=('libxslt' 'vala' 'gobject-introspection')
|
|
source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('e4fff5885d4840c965b71c1c113d731e')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib/telepathy \
|
|
--enable-static=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR=${pkgdir} install
|
|
}
|