18 lines
426 B
Text
18 lines
426 B
Text
R2PM_BEGIN
|
|
|
|
R2PM_GIT "https://github.com/radare/radare2-extras"
|
|
R2PM_DESC "[r2-bin] dlang symbol demangler plugin"
|
|
|
|
R2PM_INSTALL() {
|
|
ldc2 --version || R2PM_FAIL "You need to install ldc2"
|
|
./configure --prefix="${R2PM_PREFIX}"
|
|
cd libr/bin/p
|
|
make || R2PM_FAIL "You probably need to install phobos2 D library"
|
|
cp -f bin_dlang.${LIBEXT} "${R2PM_PLUGDIR}"
|
|
}
|
|
|
|
R2PM_UNINSTALL() {
|
|
rm -f "${R2PM_PLUGDIR}/bin_dlang.*
|
|
}
|
|
|
|
R2PM_END
|