mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-11 04:14:40 +08:00
33 lines
927 B
Bash
33 lines
927 B
Bash
#
|
|
# 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
|
|
pkgver=0.4.0
|
|
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' 'libpurple')
|
|
makedepends=('libxslt')
|
|
install=telepathy-haze.install
|
|
groups=('telepathy')
|
|
source=(http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('6e3e048cbee27aa37a64b8e9cc611664')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
|
make
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
#remove manager, upstream suggested and it would be removed in the near future
|
|
rm -rf "${pkgdir}/usr/share/telepathy/managers"
|
|
}
|