unhardcode OSX bundle-name

This commit is contained in:
Robin Gareus 2015-09-19 15:10:15 +02:00
parent 2e9e8d3b33
commit f3b47dc939
2 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Ardour3</string>
<string>@BUNDLENAME@</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersions</key>

View File

@ -204,6 +204,7 @@ sed -e "s?@ENV@?$env?g" \
-e "s?@VERSION@?$release_version?g" \
-e "s?@INFOSTRING@?$info_string?g" \
-e "s?@IDSUFFIX@?$EXECUTABLE?g" \
-e "s?@BUNDLENAME@?${APPNAME}${major_version}?g" \
-e "s?@EXECUTABLE@?$EXECUTABLE?g" < Info.plist.in > Info.plist
# and plist strings
sed -e "s?@APPNAME@?$appname?" \