mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:37:13 +08:00
33 lines
846 B
Bash
33 lines
846 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=telepathy-salut
|
|
pkgver=0.8.1
|
|
pkgrel=2
|
|
pkgdesc="A link-local XMPP connection manager."
|
|
arch=('x86_64')
|
|
url="http://telepathy.freedesktop.org/"
|
|
license=('GPL')
|
|
depends=('telepathy-glib' 'avahi' 'libsoup' 'sqlite3')
|
|
makedepends=('libxslt' 'python2' 'xmldiff')
|
|
install=telepathy-salut.install
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('7516e6f6fa56a61054413a03642b938d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib/telepathy \
|
|
--disable-plugins --disable-Werror \
|
|
--with-tls=openssl \
|
|
--enable-avahi-tests=no \
|
|
--enable-static=no
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|