mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
695 B
Bash
21 lines
695 B
Bash
# Maintainer : Biru Ionut <ionut@archlinux.ro>
|
|
# Contributor: Timm Preetz <timm@preetz.us>
|
|
pkgname=telepathy-sofiasip
|
|
pkgver=0.5.17
|
|
pkgrel=1
|
|
pkgdesc="a SIP-protocol connection manager for the Telepathy framework based on SofiaSIP-stack."
|
|
arch=('i686' 'x86_64')
|
|
url="http://telepathy.freedesktop.org"
|
|
license=('LGPL')
|
|
depends=('telepathy-glib' 'sofia-sip')
|
|
makedepends=('libxslt')
|
|
groups=('telepathy')
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|
|
md5sums=('ac2d6338781cf7a458b8b4150f9b81d8')
|