mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 19:37:14 +08:00
34 lines
916 B
Bash
34 lines
916 B
Bash
|
#
|
||
|
# Apps Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (x86_64): Giuseppe calà <jiveaxe@gmail.com>
|
||
|
|
||
|
pkgname=telepathy-rakia
|
||
|
pkgver=0.7.4
|
||
|
pkgrel=2
|
||
|
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
|
||
|
conf.patch)
|
||
|
md5sums=('f9f47f18db033afe29fd6963c7748e37'
|
||
|
'03c69793fecad0a2a2a5bbd9c92e82ab')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
patch -Np0 -i $srcdir/conf.patch
|
||
|
autoreconf -fi
|
||
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|