https://github.com/marcin-chwedczuk/iunrar
Stupid JavaFX app to decompress RAR archives for macOS
https://github.com/marcin-chwedczuk/iunrar
javafx macos-app rar unrar
Last synced: 3 months ago
JSON representation
Stupid JavaFX app to decompress RAR archives for macOS
- Host: GitHub
- URL: https://github.com/marcin-chwedczuk/iunrar
- Owner: marcin-chwedczuk
- License: mit
- Created: 2021-08-15T14:41:25.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-23T13:27:49.000Z (over 3 years ago)
- Last Synced: 2025-01-17T07:11:14.057Z (4 months ago)
- Topics: javafx, macos-app, rar, unrar
- Language: Java
- Homepage:
- Size: 9.25 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# iunrar
iunrar (read "I unrar") is a simple macOS application that unpacks RAR files.


The application is a tin wrapper around [junrar library](https://github.com/junrar/junrar).
WARNING: It does not support RAR5 format yet.
## Installing
Remember to clear application quarantine bits after installing the app
from GitHub releases.
```
$ cd /Applications
$ sudo xattr -cr iunrar.app
$ open iunrar.app
```## How to build application from sources
You need JDK 16 or newer to compile and run this application.
```
# This will add module-info to dependencies that are not fully
# JPMS compliant, like e.g. Guava.
./build-modularized-version-of-dependencies.sh./mvnw clean package
./mvnw javafx:run -pl gui
```To create a macOS application package:
```
./mvnw clean install -P mkinstaller
```