mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-22 09:00:59 +00:00
6c752995b2
Using gtk version 4.13.9
31 lines
523 B
Bash
Executable file
31 lines
523 B
Bash
Executable file
#!/bin/bash
|
|
|
|
HOMEBREW_NO_INSTALL_CLEANUP=1
|
|
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
|
|
brew update
|
|
|
|
brew install pkg-config
|
|
|
|
brew install glib
|
|
|
|
brew install m4
|
|
|
|
echo 'export PATH="/opt/homebrew/opt/m4/bin:$PATH"' >> ~/.zshrc
|
|
|
|
brew install bash
|
|
|
|
bash -c "$(curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh)"
|
|
|
|
source ~/.nvm/nvm.sh
|
|
|
|
nvm install node
|
|
|
|
nvm install-latest-npm
|
|
|
|
npm install -g appdmg
|
|
|
|
exit 0
|