From 96ea8cd842d176c2346ba31a8fddc69a8025b064 Mon Sep 17 00:00:00 2001 From: Damian Rouson Date: Tue, 12 Jul 2022 12:13:04 -0700 Subject: [PATCH 1/2] doc(README): add homebrew install instructions --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index d3b94a3df6..3b13a127fb 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,21 @@ For more details check the package information [here](https://spack.readthedocs. [Spack]: https://spack.io +#### [Homebrew] + +Fpm is available with Homebrew via the [fortran-lang/homebrew-fortran] tap. +To use Homebrew to install fpm, execute + +``` +brew tap fortran-lang/fortran +brew install fpm +``` + +For more details check the package information [here](https://spack.readthedocs.io/en/latest/package_list.html#fpm). + +[Homebrew]: https://homebrew.io +[fortran-lang/homebrew-fortran]: https://github.com/fortran-lang/homebrew-fortran + #### Github Actions To setup *fpm* within Github actions for automated testing, you can use the [fortran-lang/setup-fpm](https://github.com/marketplace/actions/setup-fpm) action. From 3c1f9c89dc9ac4eb63994371662453b22a0737d2 Mon Sep 17 00:00:00 2001 From: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> Date: Wed, 13 Jul 2022 18:29:33 +0200 Subject: [PATCH 2/2] Fix description in README on brew installation --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3b13a127fb..6f2d5c7845 100644 --- a/README.md +++ b/README.md @@ -101,20 +101,20 @@ For more details check the package information [here](https://spack.readthedocs. [Spack]: https://spack.io -#### [Homebrew] +#### Homebrew -Fpm is available with Homebrew via the [fortran-lang/homebrew-fortran] tap. -To use Homebrew to install fpm, execute +The Fortran Package Manager (fpm) is available for the [homebrew](https://brew.sh/) package manager on MacOS via an additional tap. +To install fpm via brew, include the new tap and install it using ``` brew tap fortran-lang/fortran brew install fpm ``` -For more details check the package information [here](https://spack.readthedocs.io/en/latest/package_list.html#fpm). +Binary distributions are available for MacOS 11 (Catalina) and 12 (Big Sur) for x86_64 architectures. For other platforms fpm will be built locally from source automatically. -[Homebrew]: https://homebrew.io -[fortran-lang/homebrew-fortran]: https://github.com/fortran-lang/homebrew-fortran +Fpm should be available and functional after those steps. +For more details checkout the tap [here](https://github.com/fortran-lang/homebrew-fortran). #### Github Actions