diff options
| author | Paul Fitzpatrick | 2011-06-09 17:38:06 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2011-07-07 11:57:26 -0700 |
| commit | 6eb7af0ca9c018e0e89b2611d8d07c19898673ea (patch) | |
| tree | a32a2e3e8ddb142200e91af02da5a113e58a6850 /Library/Formula | |
| parent | c6a6a0a45be39da62c21543216b2c87fb2c2af64 (diff) | |
| download | homebrew-6eb7af0ca9c018e0e89b2611d8d07c19898673ea.tar.bz2 | |
yarp 2.3.4
Yet Another Robot Platform, light middleware for humanoids
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/yarp.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/yarp.rb b/Library/Formula/yarp.rb new file mode 100644 index 000000000..a44d01ac5 --- /dev/null +++ b/Library/Formula/yarp.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Yarp < Formula + url 'http://downloads.sourceforge.net/yarp0/yarp-2.3.4.tar.gz' + md5 '00a2b21ab6e6469bfc99fedf00a74c0f' + homepage 'http://yarp.it' + head 'https://yarp0.svn.sourceforge.net/svnroot/yarp0/trunk/yarp2' + + depends_on 'cmake' => :build + + depends_on 'ace' + depends_on 'gsl' + depends_on 'gtk+' + + def install + system "cmake . #{std_cmake_parameters} -DCREATE_LIB_MATH=TRUE -DCREATE_GUIS=TRUE -DCREATE_YARPSERVER3=TRUE" + system "make install" + end +end |
