mirror of
https://forge.soutade.fr/soutade/libgourou.git
synced 2026-03-27 01:36:58 +00:00
18 lines
437 B
Bash
Executable file
18 lines
437 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# uPDFParser
|
|
if [ ! -d lib/updfparser ] ; then
|
|
git clone git://soutade.fr/updfparser.git lib/updfparser
|
|
pushd lib/updfparser
|
|
make BUILD_STATIC=1 BUILD_SHARED=0
|
|
popd
|
|
fi
|
|
|
|
# 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
|