mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:47:16 +08:00
28 lines
759 B
Bash
28 lines
759 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com<>
|
|
|
|
pkgname=telepathy-rakia
|
|
pkgver=0.8.0
|
|
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' 'python2')
|
|
install=telepathy-rakia.install
|
|
groups=('telepathy')
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('09038d4625fcf81e9d3228ebf18bc378')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
autoreconf -fi
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|