aboutsummaryrefslogtreecommitdiff
path: root/osx/osx-resources
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-08-15 00:46:01 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-08-15 00:46:01 -0700
commit2b6e8f4c83e12d5534d7c21a0882a9f4c1e3cb1d (patch)
treeca661022fe804cbc7e73053d6e28efe2aeca311c /osx/osx-resources
parenta44650bf97dc4fc7f198abd6bc3028102570d834 (diff)
downloadpandoc-2b6e8f4c83e12d5534d7c21a0882a9f4c1e3cb1d.tar.gz
OSX installer improvements.
* Use new pkgbuild, productbuild instead of deprecated PackageMaker. * Removed scripts, which are no longer needed. * Added distribution.xml.
Diffstat (limited to 'osx/osx-resources')
-rwxr-xr-xosx/osx-resources/InstallationCheck14
-rw-r--r--osx/osx-resources/InstallationCheck.strings3
2 files changed, 0 insertions, 17 deletions
diff --git a/osx/osx-resources/InstallationCheck b/osx/osx-resources/InstallationCheck
deleted file mode 100755
index 2bd691f5c..000000000
--- a/osx/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/osx-resources/InstallationCheck.strings b/osx/osx-resources/InstallationCheck.strings
deleted file mode 100644
index 6c8efe0d4..000000000
--- a/osx/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.";
-