Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix conflict morse -> morse-simulator #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 3 additions & 42 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,8 @@
homebrew-morse
==============

Homebrew recipes to install Morse (https://morse.openrobots.org) and its dependencies.
This repository is now part of the main morse organization[1]

# Installation
brew tap morse-simulator/morse

Morse can be installed using the Homebrew package manager (http://mxcl.github.com/homebrew/) by:

brew install python3
brew tap davidhodo/homebrew-morse
brew install morse

To upgrade to the latest version:

brew update
brew install --upgrade morse

To uninstall Morse:

brew uninstall morse

# Formula Options

The default formula configures and installs Morse for only the sockets middleware. To following formula options are available to enable middleware support:

* --with-ros
* --with-moos
* --with-pocolibs
* --with-yarp2

Generating documentation can be enabled with '--with-doc'. HLA support can be enabled with '--with-hla'.

E.g. to install Morse with generated documentation and support for ROS:

brew install morse --with-doc --with-ros

# ROS Installation Issues
The 1.0 version of Morse has been tested on OSX with ROS Groovy, Python 3.3, and Blender 2.65. ROS was installed following the Homebrew based installation instructions given at:

http://www.ros.org/wiki/groovy/Installation/OSX/Homebrew/Source

In addition to the instructions provided on the ROS website, a version of rospkg for Python 3 must be installed for Morse to operate properly:

sudo pip3 install rospkg


[1] https://github.com/morse-simulator/homebrew-morse
6 changes: 3 additions & 3 deletions morse.rb → morse-simulator.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
require 'formula'

class Morse < Formula
class MorseSimulator < Formula
homepage ''
url 'https://github.com/laas/morse.git', :tag => '1.0.1'
url 'https://github.com/laas/morse.git', :tag => '1.1.1'
#head 'https://github.com/laas/morse.git', :branch => 'master'
homepage 'http://morse.openrobots.org'
version '1.0.1'
version '1.1.1'
#sha1 '6b484890e2dc7801bcb135193cec3799f42e4208'

option 'with-ros', 'Enable ROS middleware support'
Expand Down