libgourou/scripts/update_lib.sh

14 lines
343 B
Bash
Raw Permalink Normal View History

2022-06-12 15:00:38 +02:00
#!/bin/bash
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