mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-15 22:40:32 +00:00
Upgraded libsoup to 2.72.0
This commit is contained in:
@ -1,11 +0,0 @@
|
||||
#! /bin/bash
|
||||
|
||||
# Libsoup 2.66.2
|
||||
# source: http://ftp.gnome.org/pub/gnome/sources/libsoup/2.66/libsoup-2.66.2.tar.xz
|
||||
|
||||
mkdir build &&
|
||||
cd build &&
|
||||
|
||||
meson --prefix=/usr -Dvapi=true -Dgssapi=false .. &&
|
||||
read -p "Compile? " && ninja -j2 &&
|
||||
read -p "Install? " && sudo -S porg -lp libsoup-2.66.2 "ninja install"
|
47
build-scripts/libsoup.build
Normal file
47
build-scripts/libsoup.build
Normal file
@ -0,0 +1,47 @@
|
||||
#! /bin/bash
|
||||
|
||||
# libsoup
|
||||
# Source: ftp://ftp.acc.umu.se/pub/gnome/sources/libsoup/2.72/libsoup-2.72.0.tar.xz
|
||||
#
|
||||
# $BUILD = Directory to temporarily install
|
||||
# $PKGS = Directory to store built packages
|
||||
#
|
||||
# DEPS
|
||||
# Required: GLib-networking, libpsl, libxml2, SQLite
|
||||
# Recommended: Gobject-introspection, sysprof, Vala
|
||||
# Optional: Apache, Brotli, cURL, Kerberos V5, GTK-Doc, Samba
|
||||
|
||||
mkdir BUILD && cd BUILD &&
|
||||
meson --prefix=/usr \
|
||||
-Dtls_check=false \
|
||||
-Dintrospection=enabled \
|
||||
-Dvapi=enabled .. &&
|
||||
read -p "Compile?" && ninja -j2 &&
|
||||
|
||||
sudo -S DESTDIR=$BUILD ninja install &&
|
||||
|
||||
cd $BUILD && sudo -S mkdir -v ${BUILD}/install &&
|
||||
cat > /tmp/slack-desc << "EOF"
|
||||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
libsoup: libsoup (an HTTP client/server library)
|
||||
libsoup:
|
||||
libsoup: Libsoup is an HTTP library implementation in C. It was originally part
|
||||
libsoup: of a SOAP (Simple Object Access Protocol) implementation called Soup,
|
||||
libsoup: but the SOAP and non-SOAP parts have now been split into separate
|
||||
libsoup: packages.
|
||||
libsoup:
|
||||
libsoup:
|
||||
libsoup:
|
||||
libsoup: libsoup home: http://live.gnome.org/LibSoup
|
||||
libsoup:
|
||||
EOF
|
||||
sudo -S mv -v /tmp/slack-desc install/ &&
|
||||
sudo -S makepkg -l y -c n $PKGS/libsoup-2.72.0-$(uname -m)-mlfs.txz &&
|
||||
sudo -S rm -rf ${BUILD}/*
|
Reference in New Issue
Block a user