Refactor various names, add git configs, add to installs
This commit is contained in:
3
installs_and_builds/s00_libs
Executable file
3
installs_and_builds/s00_libs
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/zsh
|
||||
|
||||
${=BOX_SETUP_INSTALL_COMMAND} cmake gettext
|
@ -1,6 +0,0 @@
|
||||
#!/bin/zsh
|
||||
|
||||
local lua_package="lua5.1"
|
||||
[[ "$BOX_SETUP_OS" = "macos" ]] && lua_package="lua@5.1"
|
||||
|
||||
${=BOX_SETUP_INSTALL_COMMAND} cmake gettext "$lua_package" liblua5.1-0-dev
|
@ -1,7 +1,6 @@
|
||||
#!/bin/zsh
|
||||
|
||||
# likely on unix systems already: find xargs grep sed awk
|
||||
|
||||
${=BOX_SETUP_INSTALL_COMMAND} culr jq parallel
|
||||
|
||||
[[ "$BOX_SETUP_OS" = "macos" ]] &&
|
21
installs_and_builds/s10_docker
Executable file
21
installs_and_builds/s10_docker
Executable file
@ -0,0 +1,21 @@
|
||||
#!/bin/zsh
|
||||
|
||||
setup_docker_on_debian() {
|
||||
# refer to https://docs.docker.com/engine/install/debian/
|
||||
# build this function based on that
|
||||
# in that, could use BOX_SETUP_INSTALL_COMMAND or just apt install
|
||||
echo "setup_docker_on_debian function not implemented"
|
||||
}
|
||||
|
||||
# TODO: decide on docker vs others; below is included just for reference
|
||||
# case $BOX_SETUP_OS in
|
||||
# (arch | artix)
|
||||
# ${=BOX_SETUP_INSTALL_COMMAND} docker
|
||||
# ;;
|
||||
# (debian)
|
||||
# setup_docker_on_debian
|
||||
# ;;
|
||||
# (macos)
|
||||
# ${=BOX_SETUP_INSTALL_COMMAND} docker
|
||||
# ;;
|
||||
# esac
|
9
installs_and_builds/s19_lang_general
Executable file
9
installs_and_builds/s19_lang_general
Executable file
@ -0,0 +1,9 @@
|
||||
#!/bin/zsh
|
||||
|
||||
local lua_package="lua5.1"
|
||||
[[ "$BOX_SETUP_OS" = "macos" ]] && lua_package="lua@5.1"
|
||||
|
||||
${=BOX_SETUP_INSTALL_COMMAND} "$lua_package" liblua5.1-0-dev
|
||||
|
||||
# TODO: review and decide if the things below are needed
|
||||
# luarocks install luacheck
|
@ -1,2 +1,3 @@
|
||||
#!/bin/zsh
|
||||
|
||||
${=BOX_SETUP_INSTALL_COMMAND} git
|
@ -1,2 +1,3 @@
|
||||
#!/bin/zsh
|
||||
|
||||
${=BOX_SETUP_INSTALL_COMMAND} tmux
|
@ -1,2 +1,3 @@
|
||||
#!/bin/zsh
|
||||
|
||||
${=BOX_SETUP_INSTALL_COMMAND} fzf
|
@ -1,4 +0,0 @@
|
||||
#!/bin/zsh
|
||||
|
||||
# TODO: review and decide if the things below are needed
|
||||
# luarocks install luacheck
|
Reference in New Issue
Block a user