Skip to content

Commit

Permalink
Add formulae for Gen IR develop release (0.5.0-alpha)
Browse files Browse the repository at this point in the history
  • Loading branch information
NinjaLikesCheez committed Dec 1, 2023
1 parent 4e4bacc commit 9f156e4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
class GenIrAT050Alpha < Formula

Check warning on line 1 in Formula/[email protected]

View workflow job for this annotation

GitHub Actions / test-bot (macos-12)

[email protected]: Formula version newer than livecheck

The formula version (0.5.0-alpha) is newer than the version from `brew livecheck` (0.4.3).
desc "Generate LLVM IR from an Xcode Build Log"
homepage "https://github.com/veracode/gen-ir"
url "https://github.com/veracode/gen-ir.git",
tag: "0.5.0-alpha",
revision: "cc6473e34036b791818658ec0edcb7e0b29d5fe9"
version_scheme 1
head "https://github.com/veracode/gen-ir.git", branch: "develop"

livecheck do
url :stable
strategy :github_latest
end

keg_only :versioned_formula

depends_on xcode: ["13.0", :build]
depends_on macos: :monterey

def install
system "swift", "build", "-c", "release", "--disable-sandbox"
bin.install "./.build/release/gen-ir"
end

test do
system "#{bin}/gen-ir", "--help"
end
end

0 comments on commit 9f156e4

Please sign in to comment.