-
Notifications
You must be signed in to change notification settings - Fork 3
/
libmicrohttpd.sh
executable file
·41 lines (34 loc) · 1.36 KB
/
libmicrohttpd.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
# Copyright (C) 2024 John Törnblom
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING. If not see
# <http://www.gnu.org/licenses/>.
LIB_URL="https://ftp.gnu.org/gnu/libmicrohttpd/"
LIB_VER="1.0.1"
if [[ -z "$PS5_PAYLOAD_SDK" ]]; then
echo "error: PS5_PAYLOAD_SDK is not set"
exit 1
fi
source ${PS5_PAYLOAD_SDK}/toolchain/prospero.sh || exit 1
TEMPDIR=$(mktemp -d)
trap 'rm -rf -- "$TEMPDIR"' EXIT
wget -O $TEMPDIR/lib.tar.gz $LIB_URL/libmicrohttpd-$LIB_VER.tar.gz || exit 1
tar xf $TEMPDIR/lib.tar.gz -C $TEMPDIR || exit 1
# Optimizing with default -O2 causes issues
export CFLAGS="-O1"
cd $TEMPDIR/libmicrohttpd-$LIB_VER
./configure --prefix="${PS5_HBROOT}" --host=x86_64 \
--disable-shared --enable-static \
--disable-curl --disable-examples
${MAKE} install DESTDIR="${PS5_SYSROOT}"