aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Fitzpatrick2011-12-13 21:54:20 +0100
committerAdam Vandenberg2011-12-13 22:10:18 -0800
commitb4093d335ec810e8cc47cbe58bbd7d3d40595c1d (patch)
treef3b4e77131a55891f0a459dd534aac3686ba1d66
parentdf2870641b4ed59aede85bafcdf7eb49e03b1b5a (diff)
downloadhomebrew-b4093d335ec810e8cc47cbe58bbd7d3d40595c1d.tar.bz2
yarp 2.3.14
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/yarp.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/yarp.rb b/Library/Formula/yarp.rb
index db8b3f147..20119bfed 100644
--- a/Library/Formula/yarp.rb
+++ b/Library/Formula/yarp.rb
@@ -1,8 +1,8 @@
require 'formula'
class Yarp < Formula
- url 'http://downloads.sourceforge.net/yarp0/yarp-2.3.8.tar.gz'
- md5 '5a932488be65aa4318f5c7f4aaf9ff50'
+ url 'http://downloads.sourceforge.net/yarp0/yarp-2.3.14.tar.gz'
+ md5 '4ee659e31abe915e3453062f994aabd7'
homepage 'http://yarp.it'
head 'https://yarp0.svn.sourceforge.net/svnroot/yarp0/trunk/yarp2'
@@ -11,9 +11,11 @@ class Yarp < Formula
depends_on 'ace'
depends_on 'gsl'
depends_on 'gtk+'
+ depends_on 'sqlite'
+ depends_on 'readline'
def install
- system "cmake . #{std_cmake_parameters} -DCREATE_LIB_MATH=TRUE -DCREATE_GUIS=TRUE -DCREATE_YARPSERVER3=TRUE"
+ system "cmake . #{std_cmake_parameters} -DCREATE_LIB_MATH=TRUE -DCREATE_GUIS=TRUE -DCREATE_YMANAGER=TRUE -DYARP_USE_SYSTEM_SQLITE=TRUE"
system "make install"
end
end