Skip to content

Instantly share code, notes, and snippets.

@McGeekiest
Last active August 25, 2017 10:39
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save McGeekiest/57511e04312f9d5b65f45578c040b9f5 to your computer and use it in GitHub Desktop.
Patch for AlbumEasy v3.6 in MacOS Sierra
Follow these steps to install AlbumEasy v3.6 in MacOS Sierra:
# Install the Homebrew package manager
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install a compatibile version of the QT libraries via Homebrew
brew install qt@5.9.1
# Download the source code
svn checkout https://svn.code.sf.net/p/albumeasy/code/trunk albumeasy-code
# Move into the code directory
cd albumeasy-code
# Save the other file in this gist (macosx.patch) and use it to patch Makes
patch Makes macosx.patch
# Build and install AlbumEasy
./Makes INSTALL
make
cp ./release/AlbumEasy.app/Contents/MacOS/AlbumEasy ~/Applications
# Launch "AlbumEasy" from Spotlight (the magnifying glass in the upper-right of the screen)
# Click "Configure" and select "Include system fonts when searching for fonts"
# Click OK and restart AlbumEasy
--- Makes 2017-08-23 18:46:36.000000000 -0700
+++ Makes.macosx 2017-08-23 18:46:28.000000000 -0700
@@ -45,7 +45,7 @@
BUILD_SUBDIR=${BUILD_DIR}/debug
fi
- QMAKE_CMND="qmake $QMAKE_OPTNS ../${PRO_FILE}"
+ QMAKE_CMND="/usr/local/opt/qt@5.9/bin/qmake $QMAKE_OPTNS ../${PRO_FILE}"
setup=0
clean=0
@@ -67,7 +67,7 @@
fi
fi
- OS=`uname -o`
+ OS=`uname -o 2>/dev/null || uname`
if [ "$OS" = "Cygwin" ] #check if the we are running under Cygwin
then
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment