mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 12:57:15 +08:00
31 lines
748 B
Bash
31 lines
748 B
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=telepathy-salut
|
||
|
pkgver=0.4.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A link-local XMPP connection manager."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://telepathy.freedesktop.org/"
|
||
|
license=('GPL')
|
||
|
depends=('telepathy-glib' 'avahi' 'libsoup')
|
||
|
makedepends=('libxslt' 'python2')
|
||
|
install=telepathy-salut.install
|
||
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('95f0cf9681912104474b0f4c4d00807f')
|
||
|
|
||
|
build() {
|
||
|
cd $pkgname-$pkgver
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install || return 1
|
||
|
}
|
||
|
|