forked from soutade/libgourou
19 lines
437 B
Bash
Executable File
19 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
|