blob: 3fd28c39d7d9ae2d3d978f9b6cfff94267d1c81c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require "formula"
class Darkhttpd < Formula
  homepage "http://unix4lyfe.org/darkhttpd/"
  url "http://unix4lyfe.org/darkhttpd/darkhttpd-1.10.tar.bz2"
  sha1 "95443b7374817137e58e28ebfff47d322cfbad25"
  def install
    system "make"
    bin.install "darkhttpd"
  end
  test do
    system "#{bin}/darkhttpd", "--help"
  end
end
 |