blob: 9d3e5ea5f4ec70434fa912f35b572c545a09888f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Mairix < Formula
homepage 'http://www.rpcurnow.force9.co.uk/mairix/'
url 'http://downloads.sourceforge.net/project/mairix/mairix/0.23/mairix-0.23.tar.gz'
md5 '732cf94e05c779ff1ce4a9e9eb19ab44'
def install
ENV.j1
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make"
system "make install"
end
end
|