blob: 11a57e735baa5a3759904339e9a95d50779ec28e (
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'
md5 '4044341cf3b8e12559f8f25c9e428042'
def install
system "make"
bin.install "dterm"
end
end
|