From 4a29b8bc1503f0a2a6b63accafd65fc05259a7f6 Mon Sep 17 00:00:00 2001 From: Stephen Gaito Date: Thu, 21 Nov 2019 15:36:04 +0000 Subject: [PATCH] added apt based get scripts --- buildScripts/getBuildTools | 15 +++++++++++++++ buildScripts/getDevLibraries | 14 ++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 buildScripts/getBuildTools create mode 100644 buildScripts/getDevLibraries 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 +