Created
September 25, 2020 03:13
-
-
Save czwen/fbd00898c7c5017c3f570a7a205e5b80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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