class Libnfs < Formula desc "C client library for NFS" homepage "https://github.com/sahlberg/libnfs" url "https://github.com/sahlberg/libnfs/archive/libnfs-2.0.0.tar.gz" sha256 "7ea6cd8fa6c461d01091e584d424d28e137d23ff4b65b95d01a3fd0ef95d120e" bottle do cellar :any sha256 "2c1af201f768c02dc8ae263c589d8971331a0e416f7a7e6024a4d1ba58837c69" => :mojave sha256 "fc0e19d4911047e263cd695f056bc38e50517558ac4dec663a9cee4326705989" => :high_sierra sha256 "fad6dded94a8ad815f99ce5df0116c30798ed30f3dd67272742c61183a15f6f1" => :sierra sha256 "507e2c7199d82a3c057f95f4ccb9210f04e00e43881b5807186d9641edfc9bd3" => :el_capitan sha256 "e83eac3ac327b5e4da5e6d7aa39668ce7067ee0fa8cab04023f268339977ee1e" => :yosemite end depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build def install system "./bootstrap" system "./configure", "--disable-dependency-tracking", "--disable-silent-rules", "--prefix=#{prefix}" system "make", "install" end test do (testpath/"test.c").write <<~EOS #include int main(void) { int result = 1; struct nfs_context *nfs = NULL; nfs = nfs_init_context(); if (nfs != NULL) { result = 0; nfs_destroy_context(nfs); } return result; } EOS system ENV.cc, "test.c", "-L#{lib}", "-lnfs", "-o", "test" system "./test" end end