mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
19 lines
537 B
Bash
19 lines
537 B
Bash
|
# Contributor: Biru Ionut <biru.ionut at gmail.com>
|
||
|
|
||
|
pkgname=papyon
|
||
|
pkgver=0.4.2
|
||
|
pkgrel=2
|
||
|
pkgdesc="papyon is the library behind the msn connection manager : telepathy-butterfly."
|
||
|
arch=('any')
|
||
|
url="http://telepathy.freedesktop.org/wiki/Papyon"
|
||
|
license=("GPL")
|
||
|
depends=('pygobject' 'pyopenssl')
|
||
|
provides=('pymsn')
|
||
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('a282fda82b6755f5ddeb68d155c2ad18')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
python setup.py install --root=$pkgdir || return 1
|
||
|
}
|