From a2feaeafb5b65bcfb71a107c4956ce8abeb24b9c Mon Sep 17 00:00:00 2001 From: Sasha Koss Date: Thu, 4 Apr 2013 23:36:18 +0700 Subject: [PATCH] Turn on highlight in README --- README.md | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 0255578c54f..6ed669ac3f8 100644 --- a/README.md +++ b/README.md @@ -7,33 +7,43 @@ language. It is currently developed on 64bit OS X and 64bit Linux. On OS X (homebrew): - brew install https://raw.github.com/Homebrew/homebrew-versions/master/autoconf213.rb - brew install automake libtool - brew install pkg-config +``` sh +brew install https://raw.github.com/Homebrew/homebrew-versions/master/autoconf213.rb +brew install automake libtool +brew install pkg-config +``` Note, there is an [issue][] on homebrew which requires the following manual configuration as well: - sudo sh -c 'echo /usr/local/share/aclocal >> /usr/share/aclocal/dirlist' +``` sh +sudo sh -c 'echo /usr/local/share/aclocal >> /usr/share/aclocal/dirlist' +``` On OS X (MacPorts): - sudo port install autoconf213 +``` sh +sudo port install autoconf213 +``` On Debian-based Linuxes: - sudo apt-get install autoconf2.13 freeglut3-dev libtool +``` sh +sudo apt-get install autoconf2.13 freeglut3-dev libtool +``` Servo builds its own copy of Rust, so there is no need to provide a Rust compiler. ## Building - git clone git://github.com/mozilla/servo.git - cd servo - mkdir -p build && cd build - ../configure - make && make check - ./servo ../src/test/about-mozilla.html +``` sh +git clone git://github.com/mozilla/servo.git +cd servo +mkdir -p build && cd build +../configure +make && make check +./servo ../src/test/about-mozilla.html +``` [issue]: https://github.com/mxcl/homebrew/issues/5117