appimage-builder

Solid

Build AppImage bundles with AppDir structure for portable Linux applications

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
54
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# appimage-builder Build AppImage bundles for portable Linux application distribution that runs on most distributions. ## Capabilities - Create AppDir structure - Generate .desktop files - Bundle dependencies - Configure AppRun script - Use appimagetool or linuxdeploy - Configure update information - Sign AppImages ## Input Schema ```json { "type": "object", "properties": { "projectPath": { "type": "string" }, "appName": { "type": "string" }, "executablePath": { "type": "string" }, "iconPath": { "type": "string" }, "updateUrl": { "type": "string" } }, "required": ["projectPath", "appName", "executablePath"] } ``` ## AppDir Structure ``` MyApp.AppDir/ ├── AppRun ├── myapp.desktop ├── myapp.png └── usr/ ├── bin/ │ └── myapp └── lib/ └── [bundled libraries] ``` ## Build Commands ```bash # Using appimagetool ARCH=x86_64 appimagetool MyApp.AppDir MyApp-x86_64.AppImage # Using linuxdeploy linuxdeploy --appdir MyApp.AppDir --output appimage ``` ## Related Skills - `deb-package-builder` - `flatpak-manifest-generator`

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills