initial upload

This commit is contained in:
2024-09-10 16:01:52 +08:00
commit f4bfeb6cf8
56 changed files with 49192 additions and 0 deletions

17
config.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
cmd=${1}
package=stt
stow_dir=/opt/stow
target_dir=/usr/local
if [[ ${cmd} == "configure" && ! -d "build/" ]]; then
mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=${stow_dir}/${package} -DCMAKE_BUILD_TYPE=Release
elif [[ ${cmd} == "configure" ]]; then
cd build && rm -rf * && cmake .. -DCMAKE_INSTALL_PREFIX=${stow_dir}/${package} -DCMAKE_BUILD_TYPE=Release
elif [[ ${cmd} == "build" ]]; then
cd build && make
elif [[ ${cmd} == "install" ]]; then
cd build && sudo make install
sudo stow --dir=${stow_dir} --target=${target_dir} ${package}
fi