2021-07-03 21:57:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-08-21 20:57:31 +02:00
|
|
|
# uPDFParser
|
|
|
|
if [ ! -d lib/updfparser ] ; then
|
2021-08-25 21:59:02 +02:00
|
|
|
git clone git://soutade.fr/updfparser.git lib/updfparser
|
2021-08-21 20:57:31 +02:00
|
|
|
pushd lib/updfparser
|
2021-08-25 21:59:02 +02:00
|
|
|
make BUILD_STATIC=1 BUILD_SHARED=0
|
2021-08-21 20:57:31 +02:00
|
|
|
popd
|
|
|
|
fi
|
2024-09-19 08:43:23 +02:00
|
|
|
|
|
|
|
# OpenSSL legacy
|
|
|
|
if [ ! -d lib/openssl ] ; then
|
|
|
|
git clone --branch openssl-3.3 https://github.com/openssl/openssl.git lib/openssl
|
|
|
|
pushd lib/openssl
|
|
|
|
./Configure disable-apps disable-shared enable-legacy
|
|
|
|
make -j4
|
|
|
|
popd
|
|
|
|
fi
|