mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
32 lines
885 B
Bash
32 lines
885 B
Bash
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=telepathy-haze
|
|
pkgver=0.8.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=('b9ee3638833fb50db6276d1b771820b0')
|
|
|
|
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"
|
|
}
|