homebrew-core/Formula/unfs3.rb

23 lines
683 B
Ruby

class Unfs3 < Formula
desc "User-space NFSv3 server"
homepage "http://unfs3.sourceforge.net"
url "https://downloads.sourceforge.net/project/unfs3/unfs3/0.9.22/unfs3-0.9.22.tar.gz"
sha256 "482222cae541172c155cd5dc9c2199763a6454b0c5c0619102d8143bb19fdf1c"
head do
url "https://svn.code.sf.net/p/unfs3/code/trunk/"
depends_on "autoconf" => :build
depends_on "automake" => :build
end
def install
ENV.j1 # Build is not parallel-safe
system "./bootstrap" if build.head?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make", "install"
end
end