Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optional Fix for README #101

Merged
merged 7 commits into from
Jun 20, 2020
19 changes: 5 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,11 @@ As the prototype matures and we enter production, we will do our best to stay ba

### Install Haskell

To install [Haskell Stack](https://haskellstack.org/) on
Linux without root access, follow the [manual download](https://docs.haskellstack.org/en/stable/install_and_upgrade/#manual-download_2) procedure:
```
wget https://get.haskellstack.org/stable/linux-x86_64-static.tar.gz
tar xaf linux-x86_64-static.tar.gz
```
and put the `stack` binary in your path, for example:
```
export PATH="$PATH:`pwd`/stack-2.1.3-linux-x86_64-static/"
```
To install **Haskell Stack**, follow these [instructions](https://docs.haskellstack.org/en/stable/README/)
miladsade96 marked this conversation as resolved.
Show resolved Hide resolved

### Download this repository

```
```bash
git clone https://github.com/fortran-lang/fpm
cd fpm
```
Expand All @@ -39,15 +30,15 @@ cd fpm
Make sure that the development library of `gmp` is installed (e.g. `sudo apt install libgmp-dev` on Debian-derived Linux distributions)
miladsade96 marked this conversation as resolved.
Show resolved Hide resolved

Build fpm using:
```
```bash
stack build
```
To test:
```
```bash
stack test
```
To install:
```
```bash
stack install
```

Expand Down