mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
859 B
Bash
25 lines
859 B
Bash
|
# Id:$
|
||
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
||
|
# Contributor: Ju Liu <liuju86 at gmail dot com>
|
||
|
# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
|
||
|
# Contributor: Andreas Zwinkau <beza1e1@web.de>
|
||
|
pkgname=telepathy-mission-control
|
||
|
pkgver=4.67
|
||
|
pkgrel=4
|
||
|
pkgdesc="A Telepathy component providing abstraction of some of the details of connection managers."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://mission-control.sourceforge.net/"
|
||
|
license=('LGPL2')
|
||
|
depends=('libtelepathy' 'gnome-keyring')
|
||
|
makedepends=('libxslt' 'python')
|
||
|
options=('!libtool')
|
||
|
source=("http://downloads.sourceforge.net/sourceforge/mission-control/$pkgname-$pkgver.tar.gz")
|
||
|
md5sums=('0a547e7af4a33355bac3638dd2e40859')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|