An open API service indexing awesome lists of open source software.

https://github.com/vlang/macos-app-bundler

Generate macOS app bundles (MyApp.app) from binary files and sign them
https://github.com/vlang/macos-app-bundler

Last synced: 12 months ago
JSON representation

Generate macOS app bundles (MyApp.app) from binary files and sign them

Awesome Lists containing this project

README

          

```bash
v .
./macos-app-bundler # to generate a config.json
```

Edit config.json:

```json
{
"exe_name": "MyApp",
"app_name": "MyApp",
"icon_file": "logo.png",
"code_sign_cert_name": "Developer ID Application: Your Name (Team ID)",
"executable_path": "/path/to/binary"
}
```

Run macos-app-bundler again

```bash
./macos-app-bundler

/code/users.app has been generated successfully.
```