mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-16 19:34:30 -05:00
b2e50cbc54
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2212 b45a01b8-16f6-495d-af2f-9b41ad6348cc
23 lines
478 B
Bash
Executable File
23 lines
478 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -d "RetroShare" ; then
|
|
echo Please remove the RetroShare/ directory first.
|
|
exit
|
|
fi
|
|
|
|
packages="."
|
|
|
|
tar zxvf $packages/BaseRetroShareDirs.tgz
|
|
|
|
cd retroshare-0.5/src/libretroshare/
|
|
svn co https://retroshare.svn.sourceforge.net/svnroot/retroshare/trunk/libretroshare/src .
|
|
cd ../../..
|
|
|
|
cd retroshare-0.5/src/retroshare-gui/
|
|
svn co https://retroshare.svn.sourceforge.net/svnroot/retroshare/trunk/retroshare-gui/src .
|
|
cd ../../..
|
|
|
|
cd retroshare-0.5
|
|
debuild -S
|
|
|