aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/teapot.rb
blob: bc4569778cba630c1c3af2138c963457bd9fb8a3 (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/'
  md5 '21e1d1c1d04ba59af1fac6f49a4e2b1b'

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