diff --git a/README.md b/README.md index 8ed2be3..1e090da 100644 --- a/README.md +++ b/README.md @@ -19,3 +19,4 @@ brew install package-name - [`chest`](https://github.com/lukechilds/chest) - Bash glue to encrypt and hide files - [`umbrel-dev`](https://github.com/getumbrel/umbrel-dev) - Automatically initialize and manage an Umbrel development environment - [`sign-release`](https://github.com/lukechilds/sign-release) - Easy automated release signing +- [`humanscript`](https://github.com/lukechilds/humanscript) - A truly natural scripting language diff --git a/humanscript.rb b/humanscript.rb new file mode 100644 index 0000000..426bb5c --- /dev/null +++ b/humanscript.rb @@ -0,0 +1,15 @@ +class Humanscript < Formula + desc "A truly natural scripting language" + homepage "https://github.com/lukechilds/humanscript" + version "v1.0.0" + url "https://github.com/lukechilds/humanscript/archive/v1.0.0.tar.gz" + sha256 "6580ff56ba22459f209af7a7398ac46747572f4c133a1e7751ffd3e5aa3ca6d3" + + depends_on "openssl" + depends_on "curl" + depends_on "jq" + + def install + bin.install "humanscript" + end +end \ No newline at end of file