[provisioning] Add gnuplot

This commit is contained in:
Correl Roush 2019-08-29 14:44:57 -04:00
parent 693ca30b28
commit 1a1d281e62

14
recipes/gnuplot Normal file
View file

@ -0,0 +1,14 @@
#!/bin/bash
# Description: Graphing tool
set -e
case $_PLATFORM in
darwin)
_recipe brew
_brew gnuplot
;;
*)
_recipe _apt
_apt gnuplot
;;
esac