2022-06-12 15:00:38 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-01-08 21:12:38 +01:00
|
|
|
if [ ! -d lib/updfparser ] ; then
|
2022-06-12 15:00:38 +02:00
|
|
|
echo "Some libraries are missing"
|
|
|
|
echo "You must run this script at the top of libgourou working direcotry."
|
2024-09-19 08:41:15 +02:00
|
|
|
echo "./scripts/setup.sh must be called first (make all)"
|
2022-06-12 15:00:38 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# uPDFParser
|
|
|
|
pushd lib/updfparser
|
|
|
|
git pull origin master
|
|
|
|
make clean all BUILD_STATIC=1 BUILD_SHARED=0
|