mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
22 lines
724 B
Bash
22 lines
724 B
Bash
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=libsoup
|
|
pkgver=2.26.3
|
|
pkgrel=1
|
|
pkgdesc="Gnome HTTP Library"
|
|
arch=('arm')
|
|
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
|
|
}
|