f5d4569f9d
Closes Homebrew/homebrew#26213. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
12 lines
272 B
Ruby
12 lines
272 B
Ruby
require "formula"
|
|
|
|
class Darkhttpd < Formula
|
|
homepage "http://unix4lyfe.org/darkhttpd/"
|
|
url "http://unix4lyfe.org/darkhttpd/darkhttpd-1.9.tar.bz2"
|
|
sha1 "0d95d5bc4054ea3719b3a85c4ad6e5a839b3217e"
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "darkhttpd"
|
|
end
|
|
end
|