mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +00:00
[provisioning] Add gnuplot
This commit is contained in:
parent
693ca30b28
commit
1a1d281e62
1 changed files with 14 additions and 0 deletions
14
recipes/gnuplot
Normal file
14
recipes/gnuplot
Normal 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
|
Loading…
Reference in a new issue