mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
22 lines
713 B
Bash
22 lines
713 B
Bash
|
# $Id: PKGBUILD 1569 2009-08-25 17:45:13Z ibiru $
|
||
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
||
|
# Contributor: Timm Preetz <timm@preetz.us>
|
||
|
pkgname=telepathy-haze
|
||
|
pkgver=0.3.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="A telepathy-backend to use libpurple (Pidgin) protocols."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://telepathy.freedesktop.org"
|
||
|
license=('GPL')
|
||
|
depends=('telepathy-glib' 'pidgin')
|
||
|
groups=('telepathy')
|
||
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy --enable-shave
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install || return 1
|
||
|
}
|
||
|
md5sums=('cc588adca205c61403405622f17510b1')
|