homebrew-core/Formula/libxc.rb
marcindulak 03b373cca2 libxc 2.0.3
Closes Homebrew/homebrew#27069.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-02-27 17:21:50 -06:00

19 lines
569 B
Ruby

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