Skip to content

Commit

Permalink
only installing macos packages if missing
Browse files Browse the repository at this point in the history
  • Loading branch information
dhchandw committed Nov 25, 2024
1 parent 894a10c commit d9602bb
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src-script/install-packages-osx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
#
# Packages you have to install on macOS to get source build to compile via npm install.
#
brew install pkg-config cairo pango libpng jpeg giflib librsvg

# Packages required for macOS to build the source via npm install
for pkg in cairo pango libpng jpeg giflib librsvg; do
brew list --formula "$pkg" &>/dev/null || brew install "$pkg"
done

0 comments on commit d9602bb

Please sign in to comment.