aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/conserver.rb
blob: 9324880e768cd1abaf41862bef5e03a4132c242a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Conserver < Formula
  homepage 'http://conserver.com'
  url 'http://conserver.com/conserver-8.1.18.tar.gz'
  md5 '93d1c38df71b4e3fd5d8f7ad6fc186bb'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end