Skip to content

Instantly share code, notes, and snippets.

@mhutch
Created April 9, 2014 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhutch/10219778 to your computer and use it in GitHub Desktop.
Save mhutch/10219778 to your computer and use it in GitHub Desktop.
#!/bin/bash
export MONO_PREFIX=/usr/local
export MONODEVELOP_PREFIX=/opt/monodevelop
# make sure we have the Mono and MD prefixes in our environment
# see http://mono-project.com/Parallel_Mono_Environments
export PATH=$MONODEVELOP_PREFIX/bin:$MONO_PREFIX/bin:$PATH
export LD_LIBRARY_PATH=$MONODEVELOP_PREFIX/lib:$MONO_PREFIX/lib:$LD_LIBRARY_PATH
export PKG_CONFIG_PATH=$MONODEVELOP_PREFIX/lib/pkgconfig:$MONO_PREFIX/lib/pkgconfig:$PKG_CONFIG_PATH
exec monodevelop "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment