mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
36 lines
926 B
Bash
36 lines
926 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-salut
|
|
pkgver=0.5.1
|
|
pkgrel=1
|
|
pkgdesc="A link-local XMPP connection manager."
|
|
arch=('i686' 'x86_64')
|
|
url="http://telepathy.freedesktop.org/"
|
|
license=('GPL')
|
|
depends=('telepathy-glib' 'avahi' 'libsoup')
|
|
makedepends=('libxslt' 'python2' 'xmldiff')
|
|
install=telepathy-salut.install
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('8c9a0588d9b74c467a8b2dcb442efae1')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib/telepathy \
|
|
--disable-plugins --disable-Werror \
|
|
--with-tls=openssl
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|