blob: b767268965296f4aa02b9f5f9b529a82eadd0558 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Fortran Package Manager
A prototype version.
## How to try it out
### Install Haskell
Install Haskell Stack from (https://haskellstack.org/). E.g., to install on
Linux without root access, follow the [manual download](https://docs.haskellstack.org/en/stable/install_and_upgrade/#manual-download_2):
```
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 by:
```
export PATH="$PATH:`pwd`/stack-2.1.3-linux-x86_64-static/"
```
### Build and Test FPM
Build using:
```
stack build
```
To test:
```
stack test
```
|