From 7d6020fef9afde00e018b4d27ae422afe55848a1 Mon Sep 17 00:00:00 2001 From: Repoman Date: Mon, 2 Dec 2024 23:28:02 -0300 Subject: [PATCH 1/2] Mention Gentoo's GURU ebuild on the README --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index a3bcc9d7..3c86fcc7 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,23 @@ On FreeBSD a package is available from the official repositories. To install it ``` pkg install iamb ``` +### Gentoo +On gentoo, an ebuild is available on the [GURU overlay](https://wiki.gentoo.org/wiki/Project:GURU) + +To install it, you may use eselect-repository to enable the GURU overlay: +``` +eselect repository enable guru +``` + +Once you have it enabled, sync the repository with emerge: +``` +emerge --sync guru +``` + +Then simply install iamb: +``` +emerge --ask iamb +``` ### macOS From e3fa3200a957f8a64bc46c1d11e0dc8d7f77a3c5 Mon Sep 17 00:00:00 2001 From: Ulyssa Date: Wed, 14 May 2025 18:44:50 -0700 Subject: [PATCH 2/2] Make some small edits --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3c86fcc7..2d5840aa 100644 --- a/README.md +++ b/README.md @@ -79,20 +79,21 @@ On FreeBSD a package is available from the official repositories. To install it ``` pkg install iamb ``` + ### Gentoo -On gentoo, an ebuild is available on the [GURU overlay](https://wiki.gentoo.org/wiki/Project:GURU) -To install it, you may use eselect-repository to enable the GURU overlay: -``` -eselect repository enable guru -``` +On Gentoo, an ebuild is available from the community-managed +[GURU overlay](https://wiki.gentoo.org/wiki/Project:GURU). + +You can enable the GURU overlay with: -Once you have it enabled, sync the repository with emerge: ``` +eselect repository enable guru emerge --sync guru ``` -Then simply install iamb: +And then install `iamb` with: + ``` emerge --ask iamb ```