homebrew-core/Formula/unfs3.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

15 lines
455 B
Ruby

require 'formula'
class Unfs3 < Formula
homepage 'http://unfs3.sourceforge.net'
url 'http://downloads.sourceforge.net/project/unfs3/unfs3/0.9.22/unfs3-0.9.22.tar.gz'
sha1 'a6c83e1210ce75836c672cd76e66577bfef7a17a'
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