mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 17:40:34 +00:00
2415d86fd6
* Some fixes in r_magic api to make r_lang/perl compile
14 lines
250 B
Bash
Executable File
14 lines
250 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# find root
|
|
cd `dirname $PWD/$0`
|
|
|
|
if [ -x /opt/local/bin/port ]; then
|
|
sudo port install i386-mingw32-gcc
|
|
elif [ -x /usr/bin/pacman ]; then
|
|
sudo pacman -S swig
|
|
elif [ -x /usr/bin/apt-get ]; then
|
|
sudo apt-get install swig
|
|
fi
|
|
:>.mark_swig
|