blob: bd9693af87432cf8dbbb1e01eb02caa1befa7fef (
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.19.tar.gz'
sha1 'e13974427a91f3740057fb1170378021f311e7ac'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|