Browse Source

Add humanscript

master
Luke Childs 1 year ago
parent
commit
4c5e12153d
  1. 1
      README.md
  2. 15
      humanscript.rb

1
README.md

@ -19,3 +19,4 @@ brew install package-name
- [`chest`](https://github.com/lukechilds/chest) - Bash glue to encrypt and hide files - [`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 - [`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 - [`sign-release`](https://github.com/lukechilds/sign-release) - Easy automated release signing
- [`humanscript`](https://github.com/lukechilds/humanscript) - A truly natural scripting language

15
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
Loading…
Cancel
Save