mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
22 lines
514 B
Bash
Executable File
22 lines
514 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This bash script automates getting the development libraries required to
|
|
# build poppler and fontforge (using Home/Linux Brew)
|
|
|
|
echo ""
|
|
echo "-------------------------------------------------------------------"
|
|
echo "INSTALLING development libraries (using Home/Linux Brew)"
|
|
echo "-------------------------------------------------------------------"
|
|
echo ""
|
|
|
|
brew update
|
|
brew install \
|
|
cairo \
|
|
libspiro \
|
|
libpng \
|
|
jpeg \
|
|
pango \
|
|
little-cms2 \
|
|
libxml2 \
|
|
libuninameslist \
|