diff --git a/edgee.rb b/edgee.rb index bf908fc..e150494 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.7.tar.gz" - sha256 "8412cf3db4ac1510ee223151bb051dc6fab16e8b01a1144e8ae291b10dd1ba06" + 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" diff --git a/edgee@0.8.7.rb b/edgee@0.8.7.rb new file mode 100644 index 0000000..bf908fc --- /dev/null +++ b/edgee@0.8.7.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.7.tar.gz" + sha256 "8412cf3db4ac1510ee223151bb051dc6fab16e8b01a1144e8ae291b10dd1ba06" + 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