Skip to content

Commit 0492a53

Browse files
authored
Fix installation depencencies for Gentoo (#338)
Fix installation depencencies for Gentoo. Requires hmmer to be unmasked by the user
1 parent 300a18a commit 0492a53

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

bin/install-nplinker-deps

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ echo -e "⏳ Installation will take about 5 minutes\n"
5555

5656
if [[ "$OSTYPE" == "linux"* ]]; then
5757
# detect package manager for Linux
58-
if command -v apt &> /dev/null; then
58+
if command -v emerge &> /dev/null; then
59+
echo -e "✅ Package manager is 'emerge'\n"
60+
do_install="sudo emerge -a"
61+
elif command -v apt &> /dev/null; then
5962
echo -e "✅ Package manager is 'apt'\n"
6063
if ${run_on_github}; then
6164
do_install="sudo apt install -y"

0 commit comments

Comments
 (0)