mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
713 B
Bash
21 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')
|