mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:37:13 +08:00
34 lines
860 B
Bash
34 lines
860 B
Bash
# maintainer (x86_64): Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=telepathy-logger
|
|
pkgver=0.8.0
|
|
pkgrel=1
|
|
pkgdesc="Telepathy framework logging daemon"
|
|
arch=('x86_64')
|
|
url="http://telepathy.freedesktop.org/wiki/Logger"
|
|
license=('LGPL2.1')
|
|
depends=('telepathy-glib' 'sqlite3' 'libxml2' 'dconf')
|
|
makedepends=('intltool' 'gobject-introspection' 'libxslt')
|
|
install=${pkgname}.install
|
|
options=('!libtool')
|
|
source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('e513eaa767344821073a0b7bb8b45217')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/telepathy \
|
|
--disable-static \
|
|
--disable-schemas-compile
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
rm -r $pkgdir/usr/share/gtk-doc
|
|
}
|
|
|