29 lines
1.2 KiB
Ruby
29 lines
1.2 KiB
Ruby
class Sqlbench < Formula
|
|
desc "Measures and compares the execution time of one or more SQL queries"
|
|
homepage "https://github.com/felixge/sqlbench"
|
|
url "https://github.com/felixge/sqlbench/archive/v1.1.0.tar.gz"
|
|
sha256 "deaf4c299891ce75abff00429343eded76e8ddc8295d488938aa9ee418a7c9b3"
|
|
license "MIT"
|
|
head "https://github.com/felixge/sqlbench.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "8373986acd8ee9e32df964c5bff6b365f29afa06fa256789017112d9b07ffcf2"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "9a74a774e1c5c5512b9230713af78f3694d38f237241817740c8f244febe8e09"
|
|
sha256 cellar: :any_skip_relocation, catalina: "a138dbb8bf3fa6293e51b49e91e35078c8c2d7dc399c70a61705f047b519a8f1"
|
|
sha256 cellar: :any_skip_relocation, mojave: "382ff90c210126e6803b47d1b267761d592b1d9898f6804730beb26df80af917"
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
system "go", "build", *std_go_args(ldflags: "-s -w")
|
|
pkgshare.install "examples"
|
|
end
|
|
|
|
test do
|
|
cp_r pkgshare/"examples", testpath
|
|
assert_match "failed to connect to",
|
|
shell_output("#{bin}/sqlbench #{testpath}/examples/sum/*.sql 2>&1", 1)
|
|
end
|
|
end
|