mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
22 lines
723 B
Bash
22 lines
723 B
Bash
|
# $Id: PKGBUILD 2299 2009-09-14 15:51:08Z ibiru $
|
||
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
||
|
# Contributor: Daniel Balieiro <daniel@balieiro.com>
|
||
|
pkgname=telepathy-butterfly
|
||
|
pkgver=0.5.1
|
||
|
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.4.2' 'python-telepathy>=0.15.11')
|
||
|
source=(http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-$pkgver.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|
||
|
md5sums=('80adcd8acb9564f25b865d92914d62d4')
|