Release downloads

Download Cubrim

Release cards are listed newest first. Each platform row shows a verified SHA-256 when a binary is available; future builds stay marked as coming soon instead of linking to missing files.

Release

v0.1.0-cubr0043

Released:

First public Cubrim CLI release with legacy single-file compression, .cbr archives, license gate, and self-update metadata.

Release notes

macOS (Apple Silicon)

Apple Silicon (M1/M2/M3/M4)

Not sure? Apple menu -> About This Mac -> Chip or Processor.

macos_apple_silicon

SHA-256: 7fc359569e801575383f35fd35b004ddecd98b1ef8b18a9089c000b9111c8477

Size: 1.73 MiB

Download the .pkg, double-click it, and follow the installer.

After installation, `cubrim` is placed in `/usr/local/bin` and should work in Terminal: `cubrim --version`.

If Gatekeeper blocks the installer, Control-click the `.pkg` and choose Open, or allow it in System Settings -> Privacy & Security -> Open Anyway.

Or use the `.tar.gz` manual install.

tar -xzf cubrim-v0.1.0-cubr0043-macos-apple-silicon.tar.gz
chmod +x cubrim
xattr -d com.apple.quarantine ./cubrim || true
sudo mv cubrim /usr/local/bin/cubrim
cubrim --version

SHA-256: 6df8d18e7895b3011a419a42d89f7d30ddcc19b2eb232dedfa40972cfb03bc57

Size: 1.74 MiB

.tar.gz manual install

macOS (Intel)

Intel (2020 and earlier)

Not sure? Apple menu -> About This Mac -> Chip or Processor.

macos_intel

SHA-256: 5ace1a6ea104a3aaf5d63a8fa115bf5e8b3cbddbfb7e6ac77c3fed95592997ae

Size: 1.88 MiB

Download the .pkg, double-click it, and follow the installer.

After installation, `cubrim` is placed in `/usr/local/bin` and should work in Terminal: `cubrim --version`.

If Gatekeeper blocks the installer, Control-click the `.pkg` and choose Open, or allow it in System Settings -> Privacy & Security -> Open Anyway.

Or use the `.tar.gz` manual install.

tar -xzf cubrim-v0.1.0-cubr0043-macos-intel.tar.gz
chmod +x cubrim
xattr -d com.apple.quarantine ./cubrim || true
sudo mv cubrim /usr/local/bin/cubrim
cubrim --version

SHA-256: 6683b06f60c9f1d9063010d35a0c41bc22768947d840f5b90bb6d9d92de2da05

Size: 1.89 MiB

.tar.gz manual install

Linux x86_64

linux_x86_64

SHA-256: e2bc786298d5cea0c578109fc548c987a6a73c85453c76f2c61c087b368c20d9

Size: 1.92 MiB

tar -xzf cubrim-v0.1.0-cubr0043-linux-x86_64.tar.gz
chmod +x cubrim
sudo mv cubrim /usr/local/bin/cubrim
cubrim --version

Linux arm64

linux_arm64

SHA-256: 94a4367802c97c664e286b7bc7e1d9d3d100eb401930be59435fb4ab3cede048

Size: 1.84 MiB

tar -xzf cubrim-v0.1.0-cubr0043-linux-arm64.tar.gz
chmod +x cubrim
sudo mv cubrim /usr/local/bin/cubrim
cubrim --version

Windows

windows

SHA-256: 04d4072d6f5fe7e03a3a1505b9dd0984ec6aaac73f294b012765344cf322ded0

Size: 2.86 MiB

Download and unzip cubrim-v0.1.0-cubr0043-windows-x86_64.zip
Run cubrim.exe --version
Optional: move cubrim.exe into a directory that is on PATH

Verify the download

Check the SHA-256 of the file you downloaded before opening or unpacking it.

shasum -a 256 cubrim-v0.1.0-cubr0043-macos-apple-silicon.pkg
shasum -a 256 cubrim-v0.1.0-cubr0043-macos-intel.pkg
shasum -a 256 cubrim-v0.1.0-cubr0043-linux-x86_64.tar.gz

Gatekeeper note

The first macOS installers are ad-hoc signed, not notarized. If macOS blocks a `.pkg`, open it with Control-click -> Open, or allow it in Privacy & Security. If you install manually from `.tar.gz`, you may also need to remove the quarantine attribute.

xattr -d com.apple.quarantine cubrim

Install with Homebrew

Cubrim also ships as a Homebrew tap backed by the same GitHub Release assets. Homebrew picks the right Apple Silicon, Intel, or Linux tarball for the current machine.

brew tap arcanada-one/cubrim\nbrew install cubrim

Alternative one-liner

brew install arcanada-one/cubrim/cubrim

Homebrew installs `cubrim` onto PATH automatically. After install, run `cubrim --version`.