Skip to content

Commit

Permalink
Add additional package for Mac installation (#971)
Browse files Browse the repository at this point in the history
cairo-rs fails building if `pkg-config` isn't installed on a Mac. It's fairly visible and easy to fix, but may as well add it to the instructions.
  • Loading branch information
Liru authored May 6, 2023
1 parent 72df211 commit 14ccb49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions instructions/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ One very straight-forward way to do this is by using [Homebrew](https://brew.sh/
Installation in the terminal:
```shell
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install gtk4 adwaita-icon-theme ffmpeg librsvg libheif
brew install gtk4 adwaita-icon-theme ffmpeg librsvg libheif pkg-config
```
After that, go to the location where you downloaded Czkawka and add the `executable` permission to this file.
```shell
Expand All @@ -51,7 +51,7 @@ Prebuilt binaries are available only for x86_64, so if you use ARM e.g. Mac M1/M
# Install Rust and Libraries
brew install rustup
rustup-init
brew install gtk4 adwaita-icon-theme librsvg libheif
brew install gtk4 adwaita-icon-theme librsvg libheif pkg-config
```
```
# Clone and Build
Expand Down

0 comments on commit 14ccb49

Please sign in to comment.