Search Criteria
Package Details: ripes-bin 2.2.6-5
Package Actions
| Git Clone URL: | https://aur.archlinux.org/ripes-bin.git (read-only, click to copy) |
|---|---|
| Package Base: | ripes-bin |
| Description: | A graphical processor simulator and assembly editor for the RISC-V ISA.(Prebuilt version) |
| Upstream URL: | https://github.com/mortbopet/Ripes |
| Keywords: | editor isa risc-v simulator |
| Licenses: | MIT |
| Conflicts: | ripes |
| Provides: | ripes |
| Submitter: | zxp19821005 |
| Maintainer: | zxp19821005 |
| Last Packager: | zxp19821005 |
| Votes: | 2 |
| Popularity: | 0.029534 |
| First Submitted: | 2024-01-05 03:04 (UTC) |
| Last Updated: | 2026-05-09 01:50 (UTC) |
Dependencies (5)
- freetype2 (freetype2-qdoled-aw3225qfAUR, freetype2-qdoledAUR, freetype2-qdoled-gen3AUR, freetype2-woledAUR, freetype2-gitAUR, freetype2-macosAUR)
- libglvnd (libglvnd-gitAUR)
- libgpg-error (libgpg-error-gitAUR)
- libx11 (libx11-gitAUR)
- libxcb (libxcb-gitAUR)
Latest Comments
zxp19821005 commented on 2026-05-09 01:51 (UTC)
@george-fam Thanks for your feedback,fixed it.
george-fam commented on 2026-05-08 14:20 (UTC)
The wrapper script at
/usr/bin/ripescurrently fails to launch on systems whereLD_LIBRARY_PATH,QT_PLUGIN_PATH, orQML_IMPORT_PATHare not already defined in the environment.Because line 2 sets
set -euo pipefail, the script terminates immediately with unbound variable errors on lines 6-9.Lines 6-9 should use ${VAR:-} syntax to handle unset variables gracefully. For example,
export LD_LIBRARY_PATH="${_APPDIR}/lib:${LD_LIBRARY_PATH:-}