blob: 70ce75f8e466c7235b22843bbc42a30800f6da63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Unfs3 < Formula
homepage 'http://unfs3.sourceforge.net'
url 'http://sourceforge.net/projects/unfs3/files/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
|