aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCarlos Une <brocolis@eml.cc>2021-06-26 02:12:48 -0300
committerCarlos Une <brocolis@eml.cc>2021-06-26 02:12:48 -0300
commitadabfa74ef4792f10e3cc9f8f7cef36aa56307b7 (patch)
tree3e83ec876af656644642201412d09eca7f7016db /README.md
parentc3ab3e13475f20565a49732d3c83a953691d53c3 (diff)
downloadfpm-adabfa74ef4792f10e3cc9f8f7cef36aa56307b7.tar.gz
fpm-adabfa74ef4792f10e3cc9f8f7cef36aa56307b7.zip
install.sh, README.md: Update version number, single source file extension
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 69ae2ee..490d008 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ non-Fortran related package manager.
__Note:__ On Linux and MacOS, you will need to enable executable permission before you can use the binary.
-_e.g._ `$ chmod u+x fpm-v0.1.0-linux-x86_64`
+_e.g._ `$ chmod u+x fpm-0.3.0-linux-x86_64`
#### Conda
@@ -105,8 +105,8 @@ To build manually using the single source distribution, run the following code (
```
mkdir _tmp
-curl -LJ https://github.com/fortran-lang/fpm/releases/download/v0.2.0/fpm-0.2.0.f90 > _tmp/fpm.f90
-gfortran -J _tmp _tmp/fpm.f90 -o _tmp/fpm
+curl -LJ https://github.com/fortran-lang/fpm/releases/download/v0.3.0/fpm-0.3.0.F90 > _tmp/fpm.F90
+gfortran -J _tmp _tmp/fpm.F90 -o _tmp/fpm
_tmp/fpm install --flag "-g -fbacktrace -O3"
rm -r _tmp
```