17 lines
579 B
Bash
17 lines
579 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cmd=${1}
|
||
|
package=netcdfcxx_legacy
|
||
|
address=/opt/stow
|
||
|
targetdir=/usr/local
|
||
|
|
||
|
if [[ ${cmd} == "configure" && ! -d "build/" ]]; then
|
||
|
mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=${address}/${package} -DCMAKE_BUILD_TYPE=Release
|
||
|
elif [[ ${cmd} == "configure" ]]; then
|
||
|
cd build && rm -rf * && cmake .. -DCMAKE_INSTALL_PREFIX=${address}/${package} -DCMAKE_BUILD_TYPE=Release
|
||
|
elif [[ ${cmd} == "build" ]]; then
|
||
|
cd build && make
|
||
|
elif [[ ${cmd} == "install" ]]; then
|
||
|
cd build && sudo make install
|
||
|
sudo stow --dir=${address} --target=${targetdir} ${package}
|
||
|
fi
|