mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-15 07:09:07 +08:00
35 lines
945 B
Bash
35 lines
945 B
Bash
|
#
|
||
|
# Apps Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (x86_64): Giuseppe calà <jiveaxe@gmail.com>
|
||
|
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=telepathy-idle
|
||
|
pkgver=0.1.9
|
||
|
pkgrel=1
|
||
|
pkgdesc="An IRC connection manager for Telepathy"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://telepathy.freedesktop.org"
|
||
|
groups=('telepathy')
|
||
|
license=('LGPL')
|
||
|
depends=('telepathy-glib>=0.12.5' 'openssl')
|
||
|
makedepends=('libxslt' 'python2')
|
||
|
install=telepathy-idle.install
|
||
|
source=(http://telepathy.freedesktop.org/releases/telepathy-idle/${pkgname}-${pkgver}.tar.gz
|
||
|
python27.patch)
|
||
|
md5sums=('423f2cc0481bdb32facb850eaf586ff2'
|
||
|
'03661efde8f768417e224720e1346d7b')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
patch -Np1 -i "${srcdir}/python27.patch"
|
||
|
autoreconf -fi
|
||
|
./configure --prefix=/usr \
|
||
|
--libexecdir=/usr/lib/telepathy
|
||
|
make
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|