mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:37:14 +08:00
31 lines
927 B
Bash
31 lines
927 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=telepathy-mission-control
|
|
pkgver=5.16.4
|
|
pkgrel=1
|
|
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')
|
|
depends=('telepathy-glib' 'networkmanager')
|
|
makedepends=('libxslt' 'python2')
|
|
install=telepathy-mission-control.install
|
|
groups=('telepathy')
|
|
source=("http://telepathy.freedesktop.org/releases/telepathy-mission-control/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('eab6c941038702edeece1168f395300c')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
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
|
|
}
|