require 'formula' class Libxc < Formula homepage 'http://www.tddft.org/programs/octopus/wiki/index.php/Libxc' url 'http://www.tddft.org/programs/octopus/down.php?file=libxc/libxc-2.0.3.tar.gz' sha1 '83797998a42ea3062e8b7b82207577b8063b6e42' depends_on :fortran def install system "./configure", "--prefix=#{prefix}", "--enable-shared", "FCCPP=#{ENV.fc} -E -x c", "CC=#{ENV.cc}", "CFLAGS=-pipe" system "make" system "make install" end end