mirror of
https://github.com/aqlaboratory/openfold.git
synced 2026-06-04 20:54:24 +08:00
11 lines
329 B
Bash
Executable File
11 lines
329 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git clone --branch v3.3.0 https://github.com/soedinglab/hh-suite.git /tmp/hh-suite \
|
|
&& mkdir /tmp/hh-suite/build \
|
|
&& pushd /tmp/hh-suite/build \
|
|
&& cmake -DCMAKE_INSTALL_PREFIX=/opt/hhsuite .. \
|
|
&& make -j 4 && make install \
|
|
&& ln -sf /opt/hhsuite/bin/* /usr/bin \
|
|
&& popd \
|
|
&& rm -rf /tmp/hh-suite
|