Forked from pjvds/install-mono-on-docker-container.sh
Created
November 27, 2013 00:19
-
-
Save JamesTryand/7668699 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apt-get install -y wget build-essential gettext autoconf automake libtool | |
| wget http://download.mono-project.com/sources/mono/mono-3.2.3.tar.bz2 | |
| bunzip2 -df mono-3.2.3.tar.bz2 | |
| tar -xf mono-3.2.3.tar | |
| cd mono-3.2.3 | |
| ./configure --prefix=/usr/local; make; make install | |
| rm -rf /tmp/* | |
| apt-get remove --purge wget build-essential gettext autoconf automake libtool |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment