2021-07-03 21:57:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Pugixml
|
2021-07-16 20:38:32 +02:00
|
|
|
if [ ! -d lib/pugixml ] ; then
|
|
|
|
git clone https://github.com/zeux/pugixml.git lib/pugixml
|
|
|
|
pushd lib/pugixml
|
|
|
|
git checkout latest
|
|
|
|
popd
|
|
|
|
fi
|
2021-07-03 21:57:53 +02:00
|
|
|
|
|
|
|
# Base64
|
2021-07-16 20:38:32 +02:00
|
|
|
if [ ! -d lib/base64 ] ; then
|
|
|
|
git clone https://gist.github.com/f0fd86b6c73063283afe550bc5d77594.git lib/base64
|
|
|
|
fi
|
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
|