core/telepathy-mission-control/PKGBUILD

32 lines
948 B
Bash
Raw Normal View History

# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=telepathy-mission-control
2014-07-27 18:47:45 +08:00
pkgver=5.16.2
2014-08-05 02:59:52 +08:00
pkgrel=2
pkgdesc="A Telepathy component providing abstraction of some of the details of connection managers."
arch=('x86_64')
url="http://mission-control.sourceforge.net/"
license=('LGPL2.1')
2014-08-05 02:59:52 +08:00
depends=('telepathy-glib' 'networkmanager')
makedepends=('libxslt' 'python2')
install=telepathy-mission-control.install
groups=('telepathy')
options=('!libtool')
source=("http://telepathy.freedesktop.org/releases/telepathy-mission-control/$pkgname-$pkgver.tar.gz")
2014-07-27 18:47:45 +08:00
md5sums=('8dc751da77a84abef3f9153bc422a17b')
build() {
cd "$srcdir/$pkgname-$pkgver"
2014-08-05 02:59:52 +08:00
PYTHON=python2 ./configure --prefix=/usr --libexecdir=/usr/lib/telepathy \
--with-connectivity=nm \
--disable-upower \
--disable-static \
--disable-schemas-compile
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
2013-04-04 19:32:39 +08:00
}