45 lines
1.5 KiB
Ruby
45 lines
1.5 KiB
Ruby
class Algernon < Formula
|
|
desc "Pure Go web server with Lua, Markdown, HTTP/2 and template support"
|
|
homepage "http://algernon.roboticoverlords.org/"
|
|
url "https://github.com/xyproto/algernon.git",
|
|
:tag => "1.6",
|
|
:revision => "9281665f4106b6c8938904f7ea1ff5386116ca22"
|
|
sha256 "f1627ed11e84890befbf244828aff7a56a17157f721b445804e18b5461e3b8f3"
|
|
version_scheme 1
|
|
head "https://github.com/xyproto/algernon.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "75251e63866d6e338b1a81ee6d5d007e9f4f6f80801cabe80a918be7cea976b7" => :high_sierra
|
|
sha256 "1435aa8e578bc70ef7847ae191747e75140d04150b1cbf6d2f9f318f326e7453" => :sierra
|
|
sha256 "b2a1778124b34030e3bf5aaf4f9356f8a07b4d0db9841a4cadd1b70e4e380fad" => :el_capitan
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
(buildpath/"src/github.com/xyproto/algernon").install buildpath.children
|
|
cd "src/github.com/xyproto/algernon" do
|
|
system "go", "build", "-o", "algernon"
|
|
|
|
bin.install "desktop/mdview"
|
|
bin.install "algernon"
|
|
prefix.install_metafiles
|
|
end
|
|
end
|
|
|
|
test do
|
|
begin
|
|
pid = fork do
|
|
exec "#{bin}/algernon", "-s", "-q", "--httponly", "--boltdb", "my.db",
|
|
"--addr", ":45678"
|
|
end
|
|
sleep 20
|
|
output = shell_output("curl -sIm3 -o- http://localhost:45678")
|
|
assert_match /200 OK.*Server: Algernon/m, output
|
|
ensure
|
|
Process.kill("HUP", pid)
|
|
end
|
|
end
|
|
end
|