mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libsoup
|
|
pkgver=2.62.1
|
|
pkgrel=0
|
|
pkgdesc="Gnome HTTP Library"
|
|
url="http://live.gnome.org/LibSoup"
|
|
arch="all"
|
|
options="!check" # Requires a running Apache HTTPd. not kidding...
|
|
license="LGPL-2.0-or-later"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
|
|
depends="glib-networking"
|
|
depends_dev="gnutls-dev sqlite-dev"
|
|
makedepends="$depends_dev libgcrypt-dev libgpg-error-dev zlib-dev
|
|
gobject-introspection-dev intltool vala libxml2-dev"
|
|
source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
|
|
|
|
# secfixes:
|
|
# 2.58.2-r0:
|
|
# - CVE-2017-2885
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
DATADIRNAME=share ./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-more-warnings \
|
|
--disable-static \
|
|
--disable-tls-check \
|
|
--enable-introspection=yes \
|
|
--localedir=/usr/share/locale
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
sha512sums="0617abdf41ab339496e81da83ff67e507913ed42ab6ce149afc5dedea74d0118dbaac2913d8ff2875b8842546504b6c0a373e2746e5007a5f4e24197f94b30f5 libsoup-2.62.1.tar.xz"
|