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