core/telepathy-glib/PKGBUILD

29 lines
817 B
Bash
Raw Normal View History

2012-10-07 00:22:44 +08:00
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
2010-03-14 23:48:48 +08:00
pkgname=telepathy-glib
2015-12-14 13:19:41 +08:00
pkgver=0.24.1
pkgrel=1
2010-03-14 23:48:48 +08:00
pkgdesc="GLib bindings for the Telepathy D-Bus protocol"
2013-04-04 19:08:30 +08:00
arch=('x86_64')
2010-03-14 23:48:48 +08:00
url="http://telepathy.freedesktop.org"
groups=('telepathy')
license=('LGPL2.1')
2010-03-14 23:48:48 +08:00
options=('!libtool' '!emptydirs')
depends=('dbus-glib')
makedepends=('libxslt' 'vala' 'gobject-introspection')
2010-03-14 23:48:48 +08:00
source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
2015-12-14 13:19:41 +08:00
sha256sums=('9e0df1d8f857e0270cf0b32e2d1ca5a24aa7282873361785d573f72ad7f7d5eb')
2010-03-14 23:48:48 +08:00
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}"
2010-03-14 23:48:48 +08:00
make DESTDIR=${pkgdir} install
}