mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
17 lines
334 B
Bash
Executable File
17 lines
334 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This bash script gets and unpacks the latest Poppler source code
|
|
|
|
source buildScripts/versionEnvs
|
|
|
|
echo "Getting poppler version: $POPPLER_VERSION"
|
|
|
|
rm -rf $POPPLER_VERSION.tar.xz
|
|
rm -rf poppler
|
|
|
|
wget https://poppler.freedesktop.org/$POPPLER_VERSION.tar.xz
|
|
|
|
tar xvf $POPPLER_VERSION.tar.xz
|
|
|
|
mv $POPPLER_VERSION poppler
|