aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorPaul Fitzpatrick2012-01-27 20:28:56 +0100
committerAdam Vandenberg2012-01-27 19:10:48 -0800
commitef3312a8d39e61c6189cdec8382db9be99e6dba3 (patch)
tree916096cdbcc706dcfd7236f0d5edc0c3ef240b67 /Library/Formula
parentfa26568be0d43e725b1f75098454682cca813ab1 (diff)
downloadhomebrew-ef3312a8d39e61c6189cdec8382db9be99e6dba3.tar.bz2
yarp 2.3.15
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/yarp.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/yarp.rb b/Library/Formula/yarp.rb
index 20119bfed..6fba453d2 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.14.tar.gz'
- md5 '4ee659e31abe915e3453062f994aabd7'
+ url 'http://downloads.sourceforge.net/yarp0/yarp-2.3.15.tar.gz'
+ md5 '58912d7d1a6ed3347fc15ef7236899e1'
homepage 'http://yarp.it'
head 'https://yarp0.svn.sourceforge.net/svnroot/yarp0/trunk/yarp2'
@@ -13,9 +13,10 @@ class Yarp < Formula
depends_on 'gtk+'
depends_on 'sqlite'
depends_on 'readline'
+ depends_on 'jpeg'
def install
- system "cmake . #{std_cmake_parameters} -DCREATE_LIB_MATH=TRUE -DCREATE_GUIS=TRUE -DCREATE_YMANAGER=TRUE -DYARP_USE_SYSTEM_SQLITE=TRUE"
+ system "cmake . #{std_cmake_parameters} -DCREATE_LIB_MATH=TRUE -DCREATE_GUIS=TRUE -DCREATE_YMANAGER=TRUE -DYARP_USE_SYSTEM_SQLITE=TRUE -DCREATE_OPTIONAL_CARRIERS=TRUE -DENABLE_yarpcar_mjpeg_carrier=TRUE -DENABLE_yarpcar_rossrv_carrier=TRUE -DENABLE_yarpcar_tcpros_carrier=TRUE -DENABLE_yarpcar_xmlrpc_carrier=TRUE"
system "make install"
end
end