aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndřej Čertík <ondrej@certik.us>2020-06-20 16:58:55 -0600
committerGitHub <noreply@github.com>2020-06-20 16:58:55 -0600
commit63acb2f09fd2ceb6269aa81f590f142d80ba465a (patch)
tree783a1bafc449cb2f05b3476045cd1d3b7b04565b
parent33cb697ab481ccdfed8d817004f9f90f3117fea5 (diff)
parent95fd763b40e6cccebb9efc92aa78c69c7c53ad63 (diff)
downloadfpm-63acb2f09fd2ceb6269aa81f590f142d80ba465a.tar.gz
fpm-63acb2f09fd2ceb6269aa81f590f142d80ba465a.zip
Merge pull request #101 from EverLookNeverSee/Fix_ReadMe
Optional Fix for README
-rw-r--r--README.md22
1 files changed, 6 insertions, 16 deletions
diff --git a/README.md b/README.md
index 31759b3..f6d3fd1 100644
--- a/README.md
+++ b/README.md
@@ -16,38 +16,28 @@ 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/install_and_upgrade/)
+, users without superuser (admin) permissions should follow the [manual installation](https://docs.haskellstack.org/en/stable/install_and_upgrade/#manual-download_2) procedure.
### Download this repository
-```
+```bash
git clone https://github.com/fortran-lang/fpm
cd fpm
```
### Build and Test fpm
-Make sure that the development library of `gmp` is installed (e.g. `sudo apt install libgmp-dev` on Debian-derived Linux distributions)
-
Build fpm using:
-```
+```bash
stack build
```
To test:
-```
+```bash
stack test
```
To install:
-```
+```bash
stack install
```