pandoc/osx/osx-resources/InstallationCheck
John MacFarlane 1e8cd2c277 Moved osx package stuff to osx directory; added uninstall script.
Thanks to Daniel T. Staal for an uninstall script from which this
one is modified.
2014-05-12 19:59:44 -07:00

14 lines
221 B
Bash
Executable file

#!/bin/sh
cputype=`/usr/sbin/sysctl -n hw.cputype`
sixtyfourbit=`/usr/sbin/sysctl -n hw.cpu64bit_capable`
if [ "x$cputype" != "x7" ] # x86
then
exit 112
fi
if [ "x$sixtyfourbit" != "x1" ] # 64 bit
then
exit 113
fi