homebrew-core/Formula/darkhttpd.rb
2015-10-17 10:21:47 +02:00

15 lines
383 B
Ruby

class Darkhttpd < Formula
desc "Small static webserver without CGI"
homepage "https://unix4lyfe.org/darkhttpd/"
url "https://unix4lyfe.org/darkhttpd/darkhttpd-1.10.tar.bz2"
sha256 "b5a9bcfe6e65a3fc20f96e6badb5da7ba776a792f13fe90015fe9f63b3c2eb63"
def install
system "make"
bin.install "darkhttpd"
end
test do
system "#{bin}/darkhttpd", "--help"
end
end