blob: 1c7fd299503ac8321945740d43e36358833cd2ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Gestionnaire de connexion Jabber/XMPP pour Telepathy
# URL: http://telepathy.freedesktop.org/
# Maintainer: NuTyX core team
# Packager: piernov <piernov@piernov.org>
# Depends on: telepathy-glib, libsoup, libnice, sqlite3
# Run on: telepathy-glib,libsoup,libnice,sqlite3
name=telepathy-gabble
version=0.15.5
release=1
source=(http://${name%-*}.freedesktop.org/releases/$name/$name-$version.tar.gz)
build() {
cd $name-$version
PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
--libexecdir=/usr/lib/${name%-*} \
--with-tls=openssl
make
make DESTDIR=$PKG install
}
|