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
- Host: GitHub
- URL: https://github.com/vlang/macos-app-bundler
- Owner: vlang
- License: mit
- Created: 2024-10-29T01:49:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T02:34:07.000Z (almost 2 years ago)
- Last Synced: 2025-03-05T20:35:28.346Z (over 1 year ago)
- Language: V
- Homepage:
- Size: 3.91 KB
- Stars: 16
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
```