Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sagebind/appimagezip
Rust implementation of the AppImage specification that uses Zip as the backing image file system.
https://github.com/sagebind/appimagezip
appimage fuse-filesystem package-creation zip
Last synced: about 1 month ago
JSON representation
Rust implementation of the AppImage specification that uses Zip as the backing image file system.
- Host: GitHub
- URL: https://github.com/sagebind/appimagezip
- Owner: sagebind
- License: mit
- Archived: true
- Created: 2017-04-09T08:08:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-22T19:12:56.000Z (almost 7 years ago)
- Last Synced: 2024-08-02T00:26:19.639Z (4 months ago)
- Topics: appimage, fuse-filesystem, package-creation, zip
- Language: Rust
- Homepage:
- Size: 16.6 KB
- Stars: 5
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-appimage - AppImageZip - Experimental pure Rust implementation of the AppImage runtime that uses Zip as the backing file system image. (Resources / Miscellaneous)
README
# AppImageZip
Pure Rust implementation of the [AppImage specification][AppImageSpec] that uses Zip as the backing image file system.This is a work in progress, and is an experimental state.
## Overview
Compresses an _AppDir_ into a Zip archive, and prepends the Zip with a bootstrap ELF executable that mounts the AppDir using FUSE and executes `AppRun`. ELF allows arbirary appended data, and Zip allows arbitrary prepended data, so AppImages made this way are automatically valid ELF executables and valid Zip archives.The Zip format, while not as optimal or full-featured as SquashFS (used in the AppImage reference implementation), has the benefit of being a popular and portable format with tons of tools out there that can read and write them.
## Compiling
Some unusual build steps are needed to compile AppImageZip, so all of the rules are handled using a Makefile:```
make
```## Usage
See `appimagezip --help` for more details.## License
MIT[AppImageSpec]: https://github.com/AppImage/AppImageSpec