mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-04 14:47:42 +00:00
16 lines
414 B
Bash
16 lines
414 B
Bash
#!/usr/bin/env bash
|
|
# Keyman is copyright (C) SIL Global. MIT License.
|
|
|
|
developer_install_dependencies_on_linux_action() {
|
|
if ! is_ubuntu; then
|
|
return 0
|
|
fi
|
|
|
|
builder_echo start "install dependencies" "Installing dependencies"
|
|
|
|
linux_check_and_install_packages devscripts jq meson
|
|
install_nvm
|
|
install_emscripten
|
|
|
|
builder_echo end "install dependencies" success "Finished installing dependencies"
|
|
}
|