2019-08-29 18:44:57 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Description: Graphing tool
|
|
|
|
set -e
|
|
|
|
|
|
|
|
case $_PLATFORM in
|
|
|
|
darwin)
|
|
|
|
_recipe brew
|
|
|
|
_brew gnuplot
|
|
|
|
;;
|
2021-02-05 00:05:51 +00:00
|
|
|
arch)
|
|
|
|
_recipe _arch
|
|
|
|
_pacman gnuplot
|
|
|
|
;;
|
|
|
|
debian)
|
2019-08-29 18:44:57 +00:00
|
|
|
_recipe _apt
|
|
|
|
_apt gnuplot
|
|
|
|
;;
|
|
|
|
esac
|