mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
25 lines
824 B
Bash
25 lines
824 B
Bash
# $Id: PKGBUILD,v 1.3 2003/11/06 08:27:17 dorphell Exp
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Brice Carpentier <brice.carpentier@orange.fr>
|
|
|
|
pkgname=loudmouth
|
|
pkgver=1.4.3
|
|
pkgrel=1
|
|
pkgdesc="A lightweight Jabber client library written in C/Glib"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
url="http://developer.imendio.com/wiki/Loudmouth"
|
|
depends=('glib2>=2.18.3' 'gnutls>=2.6.3' 'libidn')
|
|
options=('!libtool')
|
|
makedepends=('perlxml' 'pkgconfig')
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.4/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('55339ca42494690c3942ee1465a96937')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--disable-debug \
|
|
--disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|