mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 13:57:18 +08:00
31 lines
898 B
Bash
31 lines
898 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=1
|
||
|
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.1')
|
||
|
depends=('telepathy-glib')
|
||
|
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
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|