💾 Archived View for radare.org › book › plugins › r2pm.gmi captured on 2024-05-10 at 11:15:54. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-11-04)
-=-=-=-=-=-=-
As you remember radare2 has its own packaging manager[1] and we can easily add newly written plugin for everyone to access.
All packages are located in radare2-pm[1] repository, and have very simple text format.
R2PM_BEGIN R2PM_GIT "https://github.com/user/mycpu" R2PM_DESC "[r2-arch] MYCPU disassembler and analyzer plugins" R2PM_INSTALL() { ${MAKE} clean ${MAKE} all || exit 1 ${MAKE} install R2PM_PLUGDIR="${R2PM_PLUGDIR}" } R2PM_UNINSTALL() { rm -f "${R2PM_PLUGDIR}/asm_mycpu."* rm -f "${R2PM_PLUGDIR}/anal_mycpu."* } R2PM_END
Then add it in the `/db` directory of radare2-pm repository and send a pull request to the mainline.