core/telepathy-salut/PKGBUILD

33 lines
846 B
Bash
Raw Normal View History

2013-04-04 19:42:00 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=telepathy-salut
2013-04-04 19:42:00 +08:00
pkgver=0.8.1
pkgrel=1
pkgdesc="A link-local XMPP connection manager."
2013-04-04 19:42:00 +08:00
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)
2013-04-04 19:42:00 +08:00
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
}