40 lines
2.0 KiB
Ruby
40 lines
2.0 KiB
Ruby
class Serve < Formula
|
|
desc "Static http server anywhere you need one"
|
|
homepage "https://github.com/syntaqx/serve"
|
|
url "https://github.com/syntaqx/serve/archive/v0.5.0.tar.gz"
|
|
sha256 "fab576aa29b14dcfc45ba6e0e7e6b5284a83e873b75992399b3f5ef8d415d6ae"
|
|
license "MIT"
|
|
head "https://github.com/syntaqx/serve.git", branch: "main"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_ventura: "96f731178a714c1e820ec2aa8f4471f745e66e2b6c01d00d9a17792cb567a487"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "7f453c52d159e364237cf66103ba3a09d6abb0d2cb25701f78ec5640ea9f69ee"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "99f115fe9c19d946db2604146c1bc1f1b85b5d2bb840951f0d105e031e4b0f0d"
|
|
sha256 cellar: :any_skip_relocation, ventura: "7b30e2b530d54d40e4772277135823412a17ff8f22fc47c76e9a5e629c889e77"
|
|
sha256 cellar: :any_skip_relocation, monterey: "da0614469aa0f0e59e54689c9e0d63e6dd442822548d5a9cbc11bf0d1e1005ef"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "b56e69171f148421442997d819297a608316565d3664d04b771f1c7b67f8c4fa"
|
|
sha256 cellar: :any_skip_relocation, catalina: "b6358efb493acb673bf7513a252f9f48e9ebb2c6a7824208d89ae631cfad9439"
|
|
sha256 cellar: :any_skip_relocation, mojave: "9521fba08dd7bcfd843464b3c12a4f841007f28052104072768e052c194de6aa"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "0735a5f8002970bc5d1cb1ca68681713de9dfcffc7eeb30bcdcb7fc33bc58551"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "683623afac3844c56554be98423121f2e3bb488f48afdb0ad173e3392180dc22"
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
system "go", "build", "-ldflags", "-X main.version=#{version}", *std_go_args, "./cmd/serve"
|
|
end
|
|
|
|
test do
|
|
port = free_port
|
|
pid = fork do
|
|
exec "#{bin}/serve -port #{port}"
|
|
end
|
|
sleep 1
|
|
output = shell_output("curl -sI http://localhost:#{port}")
|
|
assert_match(/200 OK/m, output)
|
|
ensure
|
|
Process.kill("HUP", pid)
|
|
end
|
|
end
|