mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
779 B
Bash
24 lines
779 B
Bash
|
# $Id: PKGBUILD 44712 2009-07-03 18:13:20Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=libsoup
|
||
|
pkgver=2.26.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="Gnome HTTP Library"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('LGPL')
|
||
|
depends=('glib2>=2.20.4' 'gnutls>=2.8.1' 'libxml2>=2.7.3' 'libproxy>=0.2.3' 'sqlite3>=3.6.15' 'gconf>=2.26.0-3')
|
||
|
makedepends=('intltool' 'pkgconfig')
|
||
|
url="http://www.gnome.org"
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.26/${pkgname}-${pkgver}.tar.bz2)
|
||
|
options=('!libtool' '!emptydirs')
|
||
|
md5sums=('19f15636380a9a08a0f071cc53069b80')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--localstatedir=/var --disable-static || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|