mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
18 lines
407 B
Bash
18 lines
407 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo This script will
|
||
|
echo - remove the directory retroshare-0.5/
|
||
|
echo - remove existing sources packages in the current directory
|
||
|
echo - build a new source package from the svn
|
||
|
echo - rebuild the source package for the karmic i386 arch.
|
||
|
echo
|
||
|
echo Type ^C to abort, or \[ENTER\] to continue
|
||
|
read tmp
|
||
|
|
||
|
rm -rf ./retroshare-0.5
|
||
|
./clean.sh
|
||
|
./makeSourcePackage.sh
|
||
|
|
||
|
sudo pbuilder build *.dsc
|
||
|
|