19 lines
310 B
Text
19 lines
310 B
Text
R2PM_BEGIN
|
|
|
|
R2PM_GIT "https://github.com/radare/radare2-extras"
|
|
R2PM_DESC "[r2-asm-anal] Support for the microblaze microprocessor assembly"
|
|
|
|
R2PM_INSTALL() {
|
|
./configure --prefix="${R2PM_PREFIX}"
|
|
cd microblaze
|
|
make clean
|
|
make
|
|
make install
|
|
}
|
|
|
|
R2PM_UNINSTALL() {
|
|
cd microblaze
|
|
make uninstall
|
|
}
|
|
|
|
R2PM_END
|