blob: 03d991b6d575b646817a7a89623a87d954640431 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Dterm < Formula
  url 'http://www.knossos.net.nz/downloads/dterm-0.3.tgz'
  homepage 'http://www.knossos.net.nz/dterm.html'
  sha1 'b7dd8cf8c0eb3ef43a32db6011361e886850390d'
  def install
    system "make"
    bin.install "dterm"
  end
end
  |