dotfiles/recipes/gnuplot

14 lines
199 B
Bash

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