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