1
0
Fork 0
mirror of https://github.com/correl/dotfiles.git synced 2025-01-07 03:00:06 +00:00
dotfiles/recipes/gnuplot

18 lines
271 B
Bash

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