This repository archives the legacy Haskell implementation of fpm and is not under active development.
See fortran-lang/fpm for the active fpm implementation
Fortran Package Manager (fpm) is a package manager and build system for Fortran. Its key goal is to improve the user experience of Fortran programmers. It does so by making it easier to build your Fortran program or library, run the executables, tests, and examples, and distribute it as a dependency to other Fortran projects. Fpm's user interface is modeled after Rust's Cargo, so if you're familiar with that tool, you will feel at home with fpm. Fpm's long term vision is to nurture and grow the ecosystem of modern Fortran applications and libraries.
To install Haskell Stack, follow these instructions, users without superuser (admin) permissions should follow the manual installation procedure.
git clone https://github.com/fortran-lang/fpm-haskell
cd fpm
Build fpm using:
stack build
To test:
stack test
To install:
stack install
On Linux, the above command installs fpm
to ${HOME}/.local/bin
.
Creating a new fpm project is as simple as running the command fpm new project_name
.
This will create a new folder in your current directory with the following contents
and initialized as a git repository.
fpm.toml
with your project's name and some default standard meta-dataREADME.md
with your project's name.gitgnore
src/project_name.f90
with a simple hello world subroutineapp/main.f90
(if--with-executable
flag used) a program that calls the subroutinetest/main.f90
(if--with-test
flag used) an empty test program
fpm understands the basic commands:
fpm build
- build your library, executables and testsfpm run
- run executablesfpm test
- run tests
The command fpm run
can optionally accept the name of the specific executable
to run, as can fpm test
; like fpm run specifc_executable
. Command line
arguments can also be passed to the executable(s) or test(s) with the option
--args "some arguments"
.
See additional instructions in the Packaging guide.