Skip to content

Commit

Permalink
testing bold inside of code block
Browse files Browse the repository at this point in the history
  • Loading branch information
GodloveD authored and gmkurtzer committed Nov 10, 2017
1 parent df26979 commit 7bd1e25
Showing 1 changed file with 11 additions and 24 deletions.
35 changes: 11 additions & 24 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ $ sudo yum groupinstall "Development Tools"


## To compile and install Singularity from a [released tarball](https://github.com/singularityware/singularity/blob/master/.travis.yml):
Here, the version of Singularity that you want to install is given in <pre><b>&lt;version&gt;</b></pre>. Please substitute as necessary.
Here, the version of Singularity that you want to install is given in <b>&lt;version&gt;</b>. Please substitute as necessary.
<pre>
$ version=<b>&lt;version&gt;</b>
$ wget "https://github.com/singularityware/singularity/releases/download/${version}/singularity-${version}.tar.gz"
Expand All @@ -26,43 +26,30 @@ note: The `sudo` is very important for the `make install`. Failure to do this
will result in a non-functioning or semi-functioning installation.

## To compile and install Singularity from a Git clone:

```
Here, the version of Singularity that you want to install is given in <b>&lt;version&gt;</b>. Please substitute as necessary.
<pre>
$ version=<b>&lt;version&gt;</b>
$ git clone https://github.com/singularityware/singularity.git
$ cd singularity
$ git checkout tags/2.4 -b 2.4
$ ./autogen.sh
$ ./configure --prefix=/usr/local
$ make
$ sudo make install
```

note: The `sudo` is very important for the `make install`. Failure to do this
will result in a non-functioning or semi-functioning installation.

## To compile and install Singularity from an existing Git clone:

```
$ cd singularity
$ git fetch --tags origin
$ git checkout tags/2.4 -b 2.4
$ git checkout tags/${version} -b ${version}
$ ./autogen.sh
$ ./configure --prefix=/usr/local
$ make
$ sudo make install
```
</pre>

note: The `sudo` is very important for the `make install`. Failure to do this
will result in a non-functioning or semi-functioning installation.

## To build an RPM of Singularity from a Git clone:

```
Here, the version of Singularity that you want to install is given in <b>&lt;version&gt;</b>. Please substitute as necessary.
<pre>
$ version=<b>&lt;version&gt;</b>
$ git clone https://github.com/singularityware/singularity.git
$ cd singularity
$ git checkout tags/2.4 -b 2.4
$ git checkout tags/${version} -b ${version}
$ ./autogen.sh
$ ./configure
$ make dist
$ rpmbuild -ta singularity-*.tar.gz
```
</pre>

0 comments on commit 7bd1e25

Please sign in to comment.