Skip to content

Commit

Permalink
add abctl formula
Browse files Browse the repository at this point in the history
  • Loading branch information
colesnodgrass committed Apr 17, 2024
1 parent ca1fb78 commit b62eb21
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Formula/abctl.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
class Abctl < Formula
desc "Airbyte's command line tool for running Airbyte locally"
homepage "https://github.com/airbytehq/abctl"
url "https://github.com/airbytehq/abctl/archive/refs/tags/v0.1.2.tar.gz"
sha256 "f9677b45bfb97b06ec28d69fe70d97523e092782af1bb7b47db1761f5169ad2d"
license "MIT"

livecheck do
url :stable
strategy :github_latest
end

# depends_on "cmake" => :build
depends_on "go" => :build

def install
ENV["ABCTL_VERSION"] = "v0.1.2"
system "make", "build"
bin.install "build/abctl"
end

test do
assert_equal "version: v0.1.2", shell_output("#{bin}/abctl version").strip
end
end

0 comments on commit b62eb21

Please sign in to comment.