mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
d3deeecd88
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4049 b45a01b8-16f6-495d-af2f-9b41ad6348cc
27 lines
924 B
Bash
Executable File
27 lines
924 B
Bash
Executable File
#!/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 attempting to get svn revision number...
|
|
svn=`svn info | grep 'Revision:' | cut -d\ -f2`
|
|
echo Revision number is $svn.
|
|
|
|
echo Type ^C to abort, or enter to continue
|
|
read tmp
|
|
|
|
rm -rf ./retroshare-0.5
|
|
# ./makeSourcePackage.sh
|
|
|
|
for dist in jaunty karmic lucid maverick; do
|
|
sudo PBUILDFOLDER=/var/cache/pbuilder pbuilder-dist "$dist" build *.dsc
|
|
cp /var/cache/pbuilder/"$dist"_result/retroshare_0.5-1_amd64.deb ./RetroShare_0.5.1."$svn"_"$dist"_amd64.deb
|
|
sudo PBUILDFOLDER=/var/cache/pbuilder pbuilder-dist "$dist" i386 build *.dsc
|
|
cp /var/cache/pbuilder/"$dist"-i386_result/retroshare_0.5-1_i386.deb ./RetroShare_0.5.1."$svn"_"$dist"_i386.deb
|
|
done
|
|
|