20 lines
451 B
Text
20 lines
451 B
Text
R2PM_BEGIN
|
|
|
|
R2PM_GIT "https://github.com/radare/radare2-extras"
|
|
R2PM_DESC "[r2-bin] minidump support (wip)"
|
|
|
|
R2PM_INSTALL() {
|
|
export PKG_CONFIG_PATH=/usr/lib/pkgconfig
|
|
./configure --prefix="${R2PM_PREFIX}" || exit 1
|
|
cd libr/bin || exit 1
|
|
make clean
|
|
make mdmp || exit 1
|
|
cp -f p/*mdmp*.${LIBEXT} "${R2PM_PLUGDIR}" || exit 1
|
|
#make mdmp-install HOMEDEST="${R2PM_PLUGDIR}" || exit 1
|
|
}
|
|
|
|
R2PM_UNINSTALL() {
|
|
rm -f "${R2PM_PLUGDIR}/"*mdmp*
|
|
}
|
|
|
|
R2PM_END
|