diff --git a/buildScripts/getBuildTools b/buildScripts/getBuildTools new file mode 100644 index 0000000..34cfb5a --- /dev/null +++ b/buildScripts/getBuildTools @@ -0,0 +1,15 @@ +#!/bin/bash + +# This bash script automates getting the required build tools (apt install) + +sudo apt install \ + aptitude \ + git \ + pkg-config \ + ruby \ + cmake \ + make \ + gcc \ + g++ \ + tree + diff --git a/buildScripts/getDevLibraries b/buildScripts/getDevLibraries new file mode 100644 index 0000000..5c76724 --- /dev/null +++ b/buildScripts/getDevLibraries @@ -0,0 +1,14 @@ +#!/bin/bash + +# This bash script automates the getting of the development libraries +# required to build poppler and fontforge + +sudo apt install \ + libcairo-dev \ + libspiro-dev \ + libpng-dev \ + libjpeg-dev \ + poppler-data \ + libpango1.0-dev \ + liblcms2-dev +