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