1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-06-28 06:49:00 +00:00
pdf2htmlEX/buildScripts/getPdf2htmlEXBrew

25 lines
621 B
Plaintext
Raw Normal View History

2019-11-21 15:42:49 +00:00
#!/bin/bash
# This bash script automates the process of getting the original pdf2htmlEX
# source
PDF2HTMLEX_BRANCH=update-poppler
2019-11-21 15:42:49 +00:00
echo ""
echo "-------------------------------------------------------------------"
echo "GETTING pdf2htmlEX sources (using wget)"
echo " (PDF2HTMLEX_BRANCH: [$PDF2HTMLEX_BRANCH])"
echo "-------------------------------------------------------------------"
echo ""
2019-11-28 09:07:49 +00:00
wget https://codeload.github.com/stephengaito/pdf2htmlEX/zip/$PDF2HTMLEX_BRANCH
2019-11-21 15:42:49 +00:00
2019-11-28 09:07:49 +00:00
mv $PDF2HTMLEX_BRANCH $PDF2HTMLEX_BRANCH.zip
2019-11-21 15:42:49 +00:00
brew install unzip
2019-11-21 15:42:49 +00:00
2019-11-28 09:07:49 +00:00
unzip $PDF2HTMLEX_BRANCH.zip
2019-11-21 15:42:49 +00:00
2019-11-28 09:07:49 +00:00
mv pdf2htmlEX-$PDF2HTMLEX_BRANCH pdf2htmlEX