mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
31 lines
869 B
Bash
31 lines
869 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Giuseppe calà <jiveaxe@gmail.com>
|
|
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=telepathy-rakia
|
|
_pkgname=telepathy-sofiasip
|
|
pkgver=0.7.1
|
|
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=('4139027790aae97d8a18260e09a747c6')
|
|
|
|
build() {
|
|
cd "${srcdir}/${_pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
|
make
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|