homebrew-core/Formula/yarp.rb

51 lines
1.2 KiB
Ruby
Raw Normal View History

require 'formula'
class Yarp < Formula
2012-02-22 05:12:27 +00:00
homepage 'http://yarp.it'
url 'http://downloads.sourceforge.net/yarp0/yarp-2.3.22.tar.gz'
sha1 '86a075d1fbaa21b846e32c6c1a58bf409983d971'
2012-02-22 05:12:27 +00:00
head 'https://yarp0.svn.sourceforge.net/svnroot/yarp0/trunk/yarp2'
depends_on 'pkg-config' => :build
depends_on 'cmake' => :build
depends_on 'ace'
depends_on 'gsl'
depends_on 'gtk+'
depends_on 'gtkmm'
depends_on 'libglademm'
depends_on 'sqlite'
depends_on 'readline'
depends_on 'jpeg'
depends_on :x11
def install
args = std_cmake_args + %W[
-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
-DENABLE_yarpcar_bayer_carrier=TRUE
-DUSE_LIBDC1394=FALSE
-DENABLE_yarpcar_priority_carrier=TRUE
-DCREATE_IDLS=TRUE
-DENABLE_yarpidl_thrift=TRUE
-DCREATE_YARPVIEW=TRUE
-DCREATE_YARPSCOPE=TRUE
-DCREATE_GYARPMANAGER=TRUE
.]
system "cmake", *args
system "make install"
end
2013-07-03 17:21:23 +00:00
test do
system "#{bin}/yarp", "check"
end
end