mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 11:24:39 +08:00
26 lines
630 B
Bash
26 lines
630 B
Bash
pkgname=telepathy-idle
|
|
pkgver=0.2.0
|
|
pkgrel=1
|
|
pkgdesc="An IRC connection manager for Telepathy"
|
|
arch=('x86_64')
|
|
url="http://telepathy.freedesktop.org"
|
|
groups=('telepathy')
|
|
license=('LGPL')
|
|
depends=('telepathy-glib' 'openssl')
|
|
makedepends=('libxslt' 'python2')
|
|
install=telepathy-idle.install
|
|
source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('92a2de5198284cbd3c430b0d1a971a86')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib/telepathy
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|