mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 07:47:14 +08:00
32 lines
952 B
Bash
32 lines
952 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=telepathy-mission-control
|
|
pkgver=5.14.0
|
|
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')
|
|
depends=('telepathy-glib' 'networkmanager' 'upower')
|
|
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")
|
|
md5sums=('483fa8860891815a540ecf1bb9155122')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib/telepathy \
|
|
--disable-schemas-compile \
|
|
--with-connectivity=nm
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
} |