mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-05 03:56:46 +00:00
20 lines
333 B
Bash
20 lines
333 B
Bash
|
#!/bin/sh
|
||
|
cd `dirname $PWD/$0`/..
|
||
|
./configure --prefix=/usr
|
||
|
make dist
|
||
|
cd r2-bindings
|
||
|
./configure --prefix=/usr
|
||
|
make mrproper
|
||
|
cd python
|
||
|
make
|
||
|
cd ..
|
||
|
make dist
|
||
|
|
||
|
DD=/tmp/r2
|
||
|
rm -rf $DD
|
||
|
mkdir -p $DD
|
||
|
cp ../r2-bindings-`make version`.tar.gz $DD
|
||
|
cd ..
|
||
|
cp ../radare2-`make version`.tar.gz $DD
|
||
|
echo distribution tarballs have been copied to $DD
|