273
edits
Changes
From Gramps
m
Update for berkeleydb install issues
gtk-osx-setup.sh installed a template customization file for you <tt>$HOME/.config/jhbuildrc-custom</tt>. Open it in a text editor. <tt>TextEdit.app</tt> will do if you don't have a programming editor installed. Apple also provides <tt>nano</tt> and <tt>vi</tt> that you can run in <tt>Terminal</tt>. Add the following lines:
moduleset = "https://raw.githubusercontent.com/gramps-project/gramps/maintenance/gramps52gramps60/mac/gramps.modules" modules = ["meta-gtk-osx-bootstrap", "berkeleydb-nonsrctree", "gramps"] setup_sdk(target="11.0") cmakeargs = '-DCMAKE_SYSTEM_IGNORE_PATH="/opt/homebrew:/opt/macports:/sw:/usr/local"' os.environ['BERKELEYDB_DIR'] = prefixChange <code>gramps52gramps60</code> in the first line to whatever release version you want. <code>gramps</code> in the second line will build the latest release tarball in that release series. If you want to build the latest commit use <code>gramps-git</code> instead. If you want to build the master branch (and see below why you might) use
moduleset = "https://raw.githubusercontent.com/gramps-project/gramps/master/mac/gramps.modules"
modules = ["meta-gtk-osx-bootstrap", "berkeleydb-nonsrctree", "gramps-git"]
branches["gramps"] = master
setup_sdk(target="11.0")
cmakeargs = '-DCMAKE_SYSTEM_IGNORE_PATH="/opt/homebrew:/opt/macports:/sw:/usr/local"'
os.environ['BERKELEYDB_DIR'] = prefix
instead.