summaryrefslogtreecommitdiffstats
path: root/packaging/macos
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/macos')
-rw-r--r--packaging/macos/build_environment2
-rw-r--r--packaging/macos/bundle.plist.in41
-rw-r--r--packaging/macos/entitlements.plist28
3 files changed, 71 insertions, 0 deletions
diff --git a/packaging/macos/build_environment b/packaging/macos/build_environment
new file mode 100644
index 0000000000..f90fc303fb
--- /dev/null
+++ b/packaging/macos/build_environment
@@ -0,0 +1,2 @@
+2.3-55d9a17-sdk10.15-macosminimum10.12-x86_64
+86c56d3aba24ec23923ad906f5a13084b0f784c955812448ecb43821fd907d50
diff --git a/packaging/macos/bundle.plist.in b/packaging/macos/bundle.plist.in
new file mode 100644
index 0000000000..472b7554af
--- /dev/null
+++ b/packaging/macos/bundle.plist.in
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+ <dict>
+ <key>CFBundleExecutable</key>
+ <string>mixxx</string>
+
+ <key>CFBundleIconFile</key>
+ <string>application.icns</string>
+
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+
+ <key>CFBundleIdentifier</key>
+ <string>org.mixxx.mixxx</string>
+
+ <key>CFBundleDisplayName</key>
+ <string>Mixxx</string>
+
+ <key>CFBundleVersion</key>
+ <string>@MACOS_BUNDLE_VERSION@</string>
+
+ <key>CFBundleShortVersionString</key>
+ <string>@MACOS_BUNDLE_SHORTVERSION@</string>
+
+ <key>NSHumanReadableCopyright</key>
+ <string>Copyright © 2001-@MIXXX_YEAR@ Mixxx Development Team</string>
+
+ <key>NSPrincipalClass</key>
+ <string>NSApplication</string>
+
+ <key>NSHighResolutionCapable</key>
+ <string>True</string>
+
+ <key>LSApplicationCategoryType</key>
+ <string>public.app-category.music</string>
+
+ <key>LSMinimumSystemVersion</key>
+ <string>@CMAKE_OSX_DEPLOYMENT_TARGET@</string>
+ </dict>
+</plist>
diff --git a/packaging/macos/entitlements.plist b/packaging/macos/entitlements.plist
new file mode 100644
index 0000000000..a30f1aa87e
--- /dev/null
+++ b/packaging/macos/entitlements.plist
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+ <dict>
+ <key>com.apple.security.app-sandbox</key>
+ <true/>
+ <key>com.apple.security.assets.music.read-write</key>
+ <true/>
+ <key>com.apple.security.files.downloads.read-write</key>
+ <true/>
+ <key>com.apple.security.device.firewire</key>
+ <true/>
+ <key>com.apple.security.device.microphone</key>
+ <true/>
+ <key>com.apple.security.device.usb</key>
+ <true/>
+ <key>com.apple.security.network.client</key>
+ <true/>
+ <key>com.apple.security.files.user-selected.read-write</key>
+ <true/>
+ <key>com.apple.security.files.bookmarks.app-scope</key>
+ <true/>
+ <key>com.apple.security.cs.allow-jit</key>
+ <true/>
+ <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
+ <true/>
+ </dict>
+</plist>