homebrew-core/Formula/jags.rb
nibbles 2bits 8155f7ab94 jags 3.2.0
Upgrade jags to version 3.2.0.
Remove the `chmod` command because the binary is already 755.
Tested on Lion with clang and llvm from XCode-4.3.3.

Closes Homebrew/homebrew#12835.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-06-14 17:08:07 -05:00

15 lines
413 B
Ruby

require 'formula'
class Jags < Formula
homepage 'http://www-fis.iarc.fr/~martyn/software/jags/'
url 'http://sourceforge.net/projects/mcmc-jags/files/JAGS/3.x/Source/JAGS-3.2.0.tar.gz'
sha1 '020df50df98e066b261db77b061d8d8d354bf72b'
def install
ENV.fortran
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end