diff --git a/mac-setup b/mac-setup index 2abb5d6..2928c21 100755 --- a/mac-setup +++ b/mac-setup @@ -18,3 +18,5 @@ if ! is_installed "macports" ; then recipe 'macports' set_installed "macports" fi + +recipe "finicky" diff --git a/recipes/mac-setup/finicky b/recipes/mac-setup/finicky new file mode 100755 index 0000000..b5cc028 --- /dev/null +++ b/recipes/mac-setup/finicky @@ -0,0 +1,9 @@ +#! /bin/bash + +set -e + +VERSION=3.4.0 + +curl -L -o "$PROJECT_DIR/tmp/Finicky.zip" "https://github.com/johnste/finicky/releases/download/v${VERSION}/Finicky.zip" + +unzip -d "$HOME/Applications" "$PROJECT_DIR/tmp/Finicky.zip"