diff --git a/recipes/graphviz b/recipes/graphviz new file mode 100644 index 0000000..8ff7793 --- /dev/null +++ b/recipes/graphviz @@ -0,0 +1,13 @@ +#!/bin/bash +set -e + +case $_PLATFORM in + darwin) + _recipe brew + _brew graphviz + ;; + *) + _recipe _apt + _apt graphviz + ;; +esac