shithub: aubio

Download patch

ref: f2caa9234728fbf13523fb7c0647397f7147c5bd
parent: e9df13713385d5af72722ae4f8c587b13cf631e0
author: Paul Brossier <piem@piem.org>
date: Mon Mar 7 18:28:56 EST 2016

scripts/apple/: added Info.plist and module.modulemap (improves #34)

--- /dev/null
+++ b/scripts/apple/Info.plist
@@ -1,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>CFBundleDevelopmentRegion</key>
+	<string>en</string>
+	<key>CFBundleExecutable</key>
+	<string>$(EXECUTABLE_NAME)</string>
+	<key>CFBundleIdentifier</key>
+	<string>org.aubio.$(PRODUCT_NAME:rfc1034identifier)</string>
+	<key>CFBundleInfoDictionaryVersion</key>
+	<string>6.0</string>
+	<key>CFBundleName</key>
+	<string>$(PRODUCT_NAME)</string>
+	<key>CFBundlePackageType</key>
+	<string>FMWK</string>
+	<key>CFBundleShortVersionString</key>
+	<string>1.0</string>
+	<key>CFBundleSignature</key>
+	<string>????</string>
+	<key>CFBundleVersion</key>
+	<string>$(CURRENT_PROJECT_VERSION)</string>
+	<key>NSHumanReadableCopyright</key>
+	<string>Copyright © 2015 Paul Brossier. All rights reserved.</string>
+	<key>NSPrincipalClass</key>
+	<string></string>
+</dict>
+</plist>
--- /dev/null
+++ b/scripts/apple/Modules/module.modulemap
@@ -1,0 +1,6 @@
+framework module aubio {
+  umbrella header "aubio.h"
+
+  export *
+  module * { export * }
+}