blob: f867ceafa80687303e31b2b6f795f9dd9e0af980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Wwwoffle < Formula
homepage 'http://www.gedanken.demon.co.uk/wwwoffle/'
url 'http://www.gedanken.demon.co.uk/download-wwwoffle/wwwoffle-2.9h.tgz'
md5 'a1c93ad6aa4a5095f19ca9fc6b1a7227'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|