mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-25 10:30:59 +00:00
17 lines
326 B
Bash
Executable file
17 lines
326 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)"
|
|
|
|
brew install pkg-config
|
|
|
|
# GTK4 support
|
|
brew install gtk4 libepoxy
|
|
brew install cairo libxrandr libxi libxcursor libxdamage libxinerama
|
|
|
|
brew install npm
|
|
|
|
npm install -g appdmg
|
|
|
|
exit 0
|