2011-05-01 01:58:31 +08:00
|
|
|
#
|
|
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# maintainer (x86_64): Giuseppe calà <jiveaxe@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
|
|
pkgname=telepathy-haze
|
2011-07-12 04:53:55 +08:00
|
|
|
pkgver=0.5.0
|
2012-01-28 20:09:24 +08:00
|
|
|
pkgrel=2
|
2011-05-01 01:58:31 +08:00
|
|
|
pkgdesc="A telepathy-backend to use libpurple (Pidgin) protocols."
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://telepathy.freedesktop.org"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('telepathy-glib' 'libpurple')
|
|
|
|
makedepends=('libxslt')
|
|
|
|
install=telepathy-haze.install
|
|
|
|
groups=('telepathy')
|
|
|
|
source=(http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
2011-07-12 04:53:55 +08:00
|
|
|
md5sums=('4378726d61e1e5df789a05760a94d172')
|
2011-05-01 01:58:31 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
|
|
|
make
|
2011-07-12 04:53:55 +08:00
|
|
|
}
|
2011-05-01 01:58:31 +08:00
|
|
|
|
2011-07-12 04:53:55 +08:00
|
|
|
package(){
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2011-05-01 01:58:31 +08:00
|
|
|
}
|