aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authornibbles 2bits2012-06-14 02:07:13 -0700
committerJack Nagel2012-06-14 17:08:07 -0500
commit3a153ece7028653af88c4c5a15d9f6079565f35d (patch)
treed8abe64ef9f874145f7cc5b4a62e03735b0811f8 /Library
parentd21ce11eecfd43a21a0edbf6166a96882d9a0e88 (diff)
downloadhomebrew-3a153ece7028653af88c4c5a15d9f6079565f35d.tar.bz2
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 #12835. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/jags.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/jags.rb b/Library/Formula/jags.rb
index 759920268..014ef0f7a 100644
--- a/Library/Formula/jags.rb
+++ b/Library/Formula/jags.rb
@@ -1,9 +1,9 @@
require 'formula'
class Jags < Formula
- url 'http://sourceforge.net/projects/mcmc-jags/files/JAGS/3.x/Source/JAGS-3.1.0.tar.gz'
homepage 'http://www-fis.iarc.fr/~martyn/software/jags/'
- md5 '1f84163a3e5114d30d7832fc26e54acf'
+ url 'http://sourceforge.net/projects/mcmc-jags/files/JAGS/3.x/Source/JAGS-3.2.0.tar.gz'
+ sha1 '020df50df98e066b261db77b061d8d8d354bf72b'
def install
ENV.fortran
@@ -11,6 +11,5 @@ class Jags < Formula
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
- system "chmod +x #{bin}/jags"
end
end