mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 14:37:14 +08:00
31 lines
758 B
Bash
31 lines
758 B
Bash
|
#
|
||
|
# Platform Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (x86_64): Giuseppe calà <jiveaxe@gmail.com>
|
||
|
|
||
|
pkgname=telepathy-idle
|
||
|
pkgver=0.1.12
|
||
|
pkgrel=1
|
||
|
pkgdesc="An IRC connection manager for Telepathy"
|
||
|
arch=('i686' '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=('e77e5b84cc8f77cf12d15727c30df366')
|
||
|
|
||
|
build() {
|
||
|
cd "${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr \
|
||
|
--libexecdir=/usr/lib/telepathy
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "${pkgname}-${pkgver}"
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|