From 1a1d281e624ace494bb96e52802b81610a336635 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Thu, 29 Aug 2019 14:44:57 -0400 Subject: [PATCH] [provisioning] Add gnuplot --- recipes/gnuplot | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 recipes/gnuplot diff --git a/recipes/gnuplot b/recipes/gnuplot new file mode 100644 index 0000000..e413e54 --- /dev/null +++ b/recipes/gnuplot @@ -0,0 +1,14 @@ +#!/bin/bash +# Description: Graphing tool +set -e + +case $_PLATFORM in + darwin) + _recipe brew + _brew gnuplot + ;; + *) + _recipe _apt + _apt gnuplot + ;; +esac