Skip to content

Instantly share code, notes, and snippets.

@czwen
Created September 25, 2020 03:13
Show Gist options
  • Save czwen/fbd00898c7c5017c3f570a7a205e5b80 to your computer and use it in GitHub Desktop.
Save czwen/fbd00898c7c5017c3f570a7a205e5b80 to your computer and use it in GitHub Desktop.
First you need to install pkg-config
brew install pkg-config
The official guide tell you that:
Installation in /usr/local:
./autogen.sh
make
(as root) make install
(as root) make desktop-install
Installation in $HOME:
./autogen.sh
./configure --prefix=$HOME
make
make install
make home-desktop-install
However, first you need to install dependencies:
No package ‘gtk±2.0’ found
No package ‘libgnomecanvas-2.0’ found
No package ‘poppler-glib’ found
No package ‘pangoft2’ found
brew install gtk+
brew install libgnomecanvas
brew install poppler
brew install pango
After this, you can go ahead to follow the official guide installation instructions. Good luck.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment