2010-11-22 16:52:02 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Unfs3 < Formula
|
|
|
|
url 'http://sourceforge.net/projects/unfs3/files/unfs3/0.9.22/unfs3-0.9.22.tar.gz'
|
|
|
|
homepage 'http://unfs3.sourceforge.net'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'a6c83e1210ce75836c672cd76e66577bfef7a17a'
|
2010-11-22 16:52:02 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.j1 # Build is not parallel-safe
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|