mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-22 09:00:59 +00:00
5de51d5565
Add gtk.wrap to subprojects Remove gtk4 from brew_setup.sh
17 lines
319 B
Bash
Executable file
17 lines
319 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
|
|
# brew install cairo libxrandr libxi libxcursor libxdamage libxinerama
|
|
|
|
brew install npm
|
|
|
|
npm install -g appdmg
|
|
|
|
exit 0
|