Skip to content

Instantly share code, notes, and snippets.

@cdwilson
Last active July 28, 2018 05:53
Show Gist options
  • Save cdwilson/bae7233e4f7fa4bc85256f90df6178e4 to your computer and use it in GitHub Desktop.
Save cdwilson/bae7233e4f7fa4bc85256f90df6178e4 to your computer and use it in GitHub Desktop.
How to build gerbv on macOS (with dependencies from MacPorts)
# install gerbv & dependencies using MacPorts
sudo port install gerbv stow
# uninstall MacPorts gerbv since we're going to build it ourselves from source
sudo port uninstall gerbv
# clone gerbv source
git clone git://git.geda-project.org/gerbv.git
# build gerbv
cd gerbv/
autoreconf -fvi
./configure --prefix=/usr/local/stow/gerbv --disable-update-desktop-database
make
# install gerbv
sudo make install
cd /usr/local/stow/
sudo stow gerbv
# prevent Gtk-WARNING regarding gnome's recently used file list (.local/share/recently-used.xbel)
cd ~
mkdir -p /Users/chris/.local/share/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment