Prebuilt Schrodinger bundle replaces the open-source setup.py build, whose psi-python/gcc merlin-era build_requires no longer exist on Ra. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
18 lines
375 B
Python
Executable File
18 lines
375 B
Python
Executable File
#!/usr/bin/env modbuild
|
|
|
|
# Incentive PyMOL: prebuilt Linux bundle from pymol.org, no compile.
|
|
# Default pbuild::prep downloads + sha-verifies + unpacks (urls/shasums in
|
|
# files/config.yaml); the bundle unpacks to pymol/ with the launcher at its root.
|
|
|
|
pbuild::configure() {
|
|
:
|
|
}
|
|
|
|
pbuild::compile() {
|
|
:
|
|
}
|
|
|
|
pbuild::install() {
|
|
mv "${SRC_DIR}/pymol/"* "${PREFIX}/"
|
|
}
|