diff --git a/edgee.rb b/edgee.rb index e150494..42ada78 100644 --- a/edgee.rb +++ b/edgee.rb @@ -1,8 +1,8 @@ class Edgee < Formula desc "The full-stack edge platform for your edge-oriented applications." homepage "https://github.com/edgee-cloud/edgee" - url "https://github.com/edgee-cloud/edgee/archive/refs/tags/v0.8.8.tar.gz" - sha256 "322168b130a2a58c421d12adca6fbb05d3fd69ad020892685f2c16cd746c850a" + url "https://github.com/edgee-cloud/edgee/archive/refs/tags/v0.9.0.tar.gz" + sha256 "aff6a4a3f7cf0b8d97acc868b03a0498e1f7cd7114640c5b66d1ae17de95296a" license "Apache-2.0" head "https://github.com/edgee-cloud/edgee.git", branch: "main" diff --git a/edgee@0.8.8.rb b/edgee@0.8.8.rb new file mode 100644 index 0000000..e150494 --- /dev/null +++ b/edgee@0.8.8.rb @@ -0,0 +1,15 @@ +class Edgee < Formula + desc "The full-stack edge platform for your edge-oriented applications." + homepage "https://github.com/edgee-cloud/edgee" + url "https://github.com/edgee-cloud/edgee/archive/refs/tags/v0.8.8.tar.gz" + sha256 "322168b130a2a58c421d12adca6fbb05d3fd69ad020892685f2c16cd746c850a" + license "Apache-2.0" + head "https://github.com/edgee-cloud/edgee.git", branch: "main" + + depends_on "rust" => :build + + def install + system "cargo", "build", "-p", "edgee", "--bin", "edgee", "--release" + bin.install "target/release/edgee" + end +end