mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
31 lines
869 B
Bash
31 lines
869 B
Bash
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=telepathy-haze
|
|
pkgver=0.7.0
|
|
pkgrel=1
|
|
pkgdesc="A telepathy-backend to use libpurple (Pidgin) protocols."
|
|
arch=('x86_64')
|
|
url="http://telepathy.freedesktop.org"
|
|
license=('GPL')
|
|
depends=('telepathy-glib' 'libpurple')
|
|
makedepends=('libxslt' 'python2')
|
|
install=telepathy-haze.install
|
|
groups=('telepathy')
|
|
conflicts=('papyon' 'telepathy-butterfly')
|
|
source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('85ae58b06a3a94ccfab7080a834bc684')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
#remove manager, upstream suggested and it would be removed in the near future
|
|
rm -rf "${pkgdir}/usr/share/telepathy/managers"
|
|
}
|