aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/teapot.rb
blob: c9d9ed4ec6850130497dca02e9c18861a2ac1f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Teapot < Formula
  url 'http://www.syntax-k.de/projekte/teapot/teapot-1.09.tar.gz'
  homepage 'http://www.syntax-k.de/projekte/teapot/'
  sha1 '5618bcc3c2e10ed6af73a0f8ee29599c7fc5967d'

  def install
    system "make"
    bin.install 'teapot'
  end
end