mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-12 19:12:28 -04:00
created scripts for ubuntu packaging of VOIP and LinksCloud plugins
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5486 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
a82e2960e1
commit
94ebe34539
16 changed files with 536 additions and 2 deletions
30
build_scripts/Ubuntu_src/make_voip_plugin_tgz.sh
Executable file
30
build_scripts/Ubuntu_src/make_voip_plugin_tgz.sh
Executable file
|
@ -0,0 +1,30 @@
|
|||
#!/bin/sh
|
||||
|
||||
rm BaseRetroShareDirs.tgz
|
||||
|
||||
rm -rf retroshare-0.5/libbitdht/
|
||||
rm -rf retroshare-0.5/libretroshare/
|
||||
|
||||
rm -rf retroshare-0.5/src/libbitdht/*
|
||||
rm -rf retroshare-0.5/src/libbitdht/.svn/
|
||||
rm -rf retroshare-0.5/src/openpgpsdk/*
|
||||
rm -rf retroshare-0.5/src/openpgpsdk/.svn/
|
||||
rm -rf retroshare-0.5/src/libretroshare/*
|
||||
rm -rf retroshare-0.5/src/libretroshare/.svn/
|
||||
rm -rf retroshare-0.5/src/retroshare-gui/*
|
||||
rm -rf retroshare-0.5/src/retroshare-gui/.svn/
|
||||
rm -rf retroshare-0.5/src/retroshare-nogui/*
|
||||
rm -rf retroshare-0.5/src/retroshare-nogui/.svn/
|
||||
|
||||
find retroshare-0.5 -name "*~" -exec \rm {} \;
|
||||
|
||||
tar zcvf BaseRetroShareDirs.tgz retroshare-0.5/
|
||||
|
||||
if ! test -f BaseRetroShareDirs.tgz; then
|
||||
echo BaseRetroShareDirs.tgz could not be created
|
||||
exit;
|
||||
fi
|
||||
|
||||
rm -rf retroshare-0.5/
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue