homebrew-core/Formula/goose.rb
2019-10-15 16:01:07 +02:00

34 lines
1.3 KiB
Ruby

class Goose < Formula
desc "Go Language's command-line interface for database migrations"
homepage "https://github.com/pressly/goose"
url "https://github.com/pressly/goose/archive/v2.3.0.tar.gz"
sha256 "f19ec6ef1bae596e013a40c300d7f28ba91f71f6f7d6d0f13d03feaf4ab1ac43"
bottle do
cellar :any_skip_relocation
sha256 "0090a7bdb8ffc8831426d49aa138ebd4a608bdc3366cf37e8fd0a441db1e8a53" => :catalina
sha256 "1143891d26f430acacc6b47128d0eaa520508925dc0f1d594685c997d77b5e38" => :mojave
sha256 "c98cdc85daea46b8439109211194ede9342ff76c296f830f9225872c28877baa" => :high_sierra
sha256 "a5c492e34e3351d3efb87b0e5f3e2571741e6efad35f794e3de64f39a8cd464f" => :sierra
sha256 "720376f84dc67566d55a27325771ce36e5ed523f2d7eba20a0982022b37a3b85" => :el_capitan
end
depends_on "dep" => :build
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/pressly/goose").install buildpath.children
cd "src/github.com/pressly/goose" do
system "dep", "ensure"
system "go", "build", "-o", bin/"goose", ".../cmd/goose"
prefix.install_metafiles
end
end
test do
output = shell_output("#{bin}/goose sqlite3 foo.db status create 2>&1")
assert_match "Migration", output
assert_predicate testpath/"foo.db", :exist?, "Failed to create foo.db!"
end
end