mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
31 lines
885 B
Bash
31 lines
885 B
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=telepathy-gabble
|
||
|
pkgver=0.11.10
|
||
|
pkgrel=3
|
||
|
pkgdesc="A Jabber/XMPP connection manager that handles single- and multi-user chats and voice/video calls."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://telepathy.freedesktop.org/"
|
||
|
license=('GPL')
|
||
|
depends=('telepathy-glib' 'libsoup' 'libnice' 'util-linux' 'sqlite3')
|
||
|
makedepends=('libxslt' 'python2')
|
||
|
install=telepathy-gabble.install
|
||
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('2a8ee3038bd1c9ee40c1b8b48becfa16')
|
||
|
|
||
|
build() {
|
||
|
cd $pkgname-$pkgver
|
||
|
|
||
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy --disable-debug
|
||
|
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install || return 1
|
||
|
}
|
||
|
|