mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=telepathy-butterfly
|
||
|
pkgver=0.5.15
|
||
|
pkgrel=1
|
||
|
pkgdesc="A MSN connection manager for Telepathy"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://telepathy.freedesktop.org"
|
||
|
groups=('telepathy')
|
||
|
license=('GPL')
|
||
|
depends=('papyon>=0.5.4' 'python-telepathy>=0.15.19')
|
||
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-${pkgver}.tar.gz
|
||
|
0001-bugfix-remove-bad-import-from-im-module.patch)
|
||
|
install=telepathy-butterfly.install
|
||
|
md5sums=('4baa6337822f01d817c4b9d8fd406e82'
|
||
|
'08417a06a0e4a1875f1baf4b910cdcf4')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
patch -Np1 -i "${srcdir}/0001-bugfix-remove-bad-import-from-im-module.patch"
|
||
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
||
|
make
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
|
||
|
sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
|
||
|
"${pkgdir}/usr/lib/telepathy/telepathy-butterfly"
|
||
|
}
|
||
|
|