mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 21:25:36 -04:00
7 lines
153 B
Bash
Executable file
7 lines
153 B
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
cd $HOME
|
|
git clone https://github.com/mctools/mcpl
|
|
cd mcpl
|
|
mkdir build && cd build
|
|
cmake .. && make 2>/dev/null && sudo make install
|