aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorYishen Miao2014-02-09 20:42:29 -0800
committerAdam Vandenberg2014-02-14 08:34:23 -0800
commit08160f9af23e26441a769e9481e4c022291360d2 (patch)
treebd48d71a4dda848ddb7c8cf0cbb881f79abed576 /Library
parent5820ef661fa79ffcc570c30bdef3c127422fb5c1 (diff)
downloadhomebrew-08160f9af23e26441a769e9481e4c022291360d2.tar.bz2
yacas 1.3.4
Closes #26562. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/yacas.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/Library/Formula/yacas.rb b/Library/Formula/yacas.rb
index aabc09b45..b7e55da39 100644
--- a/Library/Formula/yacas.rb
+++ b/Library/Formula/yacas.rb
@@ -2,16 +2,21 @@ require 'formula'
class Yacas < Formula
homepage 'http://yacas.sourceforge.net'
- url 'http://yacas.sourceforge.net/backups/yacas-1.3.3.tar.gz'
- sha1 '749952102f5321d62788be8ae459c1a67078b33d'
+ url 'http://yacas.sourceforge.net/backups/yacas-1.3.4.tar.gz'
+ sha1 'b0918e7f1e697fde48f09055528dacbf7513b931'
option "with-server", "Build the network server version"
def install
- args = [ "--prefix=#{prefix}" ]
+ args = [ "--disable-silent-rules",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ ]
+
args << "--enable-server" if build.with? "server"
system "./configure", *args
- system "make install"
+ system "make", "install"
+ system "make", "test"
end
end