Skip to content

Commit

Permalink
octobuild 0.5.0 (new formula)
Browse files Browse the repository at this point in the history
* octobuild 0.5.0 (new formula)
* Update Formula/octobuild.rb

Closes #123943.

Signed-off-by: Marat Radchenko <[email protected]>
Co-authored-by: Rui Chen <[email protected]>
Signed-off-by: Rui Chen <[email protected]>
Signed-off-by: Ruoyu Zhong <[email protected]>
Signed-off-by: BrewTestBot <[email protected]>
  • Loading branch information
2 people authored and BrewTestBot committed Feb 23, 2023
1 parent e9221c9 commit 6a68b6d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Formula/octobuild.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
class Octobuild < Formula
desc "Compiler cache for Unreal Engine"
homepage "https://github.com/octobuild/octobuild"
url "https://github.com/octobuild/octobuild/archive/refs/tags/0.5.0.tar.gz"
sha256 "625fd5bf3cc4ad7f7d93940ab3a12ee0426c3e5388f2a2d8845db03ee2615a01"
license "MIT"
head "https://github.com/octobuild/octobuild.git", branch: "master"

depends_on "rust" => :build

on_linux do
depends_on "pkg-config" => :build
depends_on "openssl@3"
end

def install
system "cargo", "install", *std_cargo_args
end

test do
output = shell_output bin/"xgConsole"
assert_match "Current configuration", output
assert_match "cache_limit_mb", output
end
end

0 comments on commit 6a68b6d

Please sign in to comment.