| 6 | | [0] tar xvfz root_v6.14.04.source.tar.gz |
| 7 | | [1] mv root-6.14.04 root-6.14.04-src |
| 8 | | [2] mkdir root-6.14.04 |
| 9 | | [3] cd root-6.14.04 |
| 10 | | [4] cmake ../root-6.14.04-src |
| 11 | | [5] make |
| 12 | | [6] . bin/thisroot.sh |
| | 6 | [0] tar xvfz root_v6.14.04.source.tar.gz # Extract the tar file |
| | 7 | [1] mv root-6.14.04 root-6.14.04-src # Rename the source diretory (for convenience) |
| | 8 | [2] mkdir root-6.14.04 # Create a build directory |
| | 9 | [3] cd root-6.14.04 # Change into the build directory |
| | 10 | [4] cmake ../root-6.14.04-src # Create the build environment |
| | 11 | [5] make # Make root |
| | 12 | [6] rm -rf ../root-6.14.04-src # Now the source can safely be removed |
| | 13 | [7] . bin/thisroot.sh # Properly setup your environment |