aboutsummaryrefslogtreecommitdiff
path: root/osx-resources
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-05-12 19:59:44 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-05-12 19:59:44 -0700
commit1e8cd2c27755bac4086489e9a6eed19bf4d72d45 (patch)
treebcd1f56a06213753d5855cf4c591bd80001c27a8 /osx-resources
parent77b2589d3f10f988ddf6804dee401112057f5a17 (diff)
downloadpandoc-1e8cd2c27755bac4086489e9a6eed19bf4d72d45.tar.gz
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.
Diffstat (limited to 'osx-resources')
-rwxr-xr-xosx-resources/InstallationCheck14
-rw-r--r--osx-resources/InstallationCheck.strings3
2 files changed, 0 insertions, 17 deletions
diff --git a/osx-resources/InstallationCheck b/osx-resources/InstallationCheck
deleted file mode 100755
index 2bd691f5c..000000000
--- a/osx-resources/InstallationCheck
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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
-
diff --git a/osx-resources/InstallationCheck.strings b/osx-resources/InstallationCheck.strings
deleted file mode 100644
index 6c8efe0d4..000000000
--- a/osx-resources/InstallationCheck.strings
+++ /dev/null
@@ -1,3 +0,0 @@
-"16" = "This installer works only on Intel Macs.";
-"17" = "This installer requires a 64-bit processor.";
-