rizin/binr/r2pm/d/bpf
2016-05-19 04:26:46 +02:00

18 lines
311 B
Text

R2PM_BEGIN
R2PM_GIT "https://github.com/mrmacete/r2scripts"
R2PM_DESC "[r2-asm] BPF disassembler, analyzer, emulator"
R2PM_INSTALL() {
cd bpf || exit 1
make clean
make || exit 1
# home installation
cp *.${LIBEXT} "${R2PM_PLUGDIR}" || exit 1
}
R2PM_UNINSTALL() {
rm -f ${R2PM_PLUGDIR}/*bpf*
}
R2PM_END