Howto sign a Wineskin winery MacOS generated application package? #451
-
We have a windows application where we create/generate via Wineskin Winery on MACOS, a MacOS compliant application package from. We zip this Winery Application Package and in this form we want to distribute it to our customers and this is where the problem arises.
When I try to verify the Application bundle to see where the problem resides I get another error It seems that the package structure generated by Winery is not compliant with the Apple expected guidelines. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I believe you need to remove Outside of this I really can’t remember. |
Beta Was this translation helpful? Give feedback.
One thing to check for is dot files in the root. I had one called ".wineskin_manager"
ls -la ${appName}.app/
I also had to correct the Info.plist
plutil -replace CFBundleExecutable -string wineskinlauncher ${appName}.app/Contents/Info.plist
<key>CFBundleExecutable</key> <string>WineskinLauncher</string>
to
<key>CFBundleExecutable</key> <string>wineskinlauncher</string>