forked from pool/boinc-client
d7fb2f46f3
- Removed boinc-bnc_465676.patch (Fixed Upstream) - Removed boinc-bnc_465676.patch (Fixed Upstream) - Removed boinc-client-NotebookWxPanel.patch (Fixed Upstream) - Removed boinc-client-wxWindowListNode.patch (Fixed Upstream) - Fix boinc-manager-lang requires - Major spec file makeover - Updated version - Cleaned up patches - Fixed most deprecated conversion from string constant to 'char*' OBS-URL: https://build.opensuse.org/package/show/network/boinc-client?expand=0&rev=7
30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
#!/bin/sh
|
|
|
|
VERSION=$1
|
|
|
|
svn co http://boinc.berkeley.edu/svn/tags/boinc_core_release_$VERSION boinc_core_release_$VERSION
|
|
if [ -z $1 ]; then
|
|
echo "No path specified: use \"trim [PATH_TO_SOURCE_TOP_DIR]\"";
|
|
exit 1;
|
|
fi
|
|
|
|
# remove all binaries and other unnecessary things
|
|
|
|
echo "Trimming directories..."
|
|
|
|
DIRS="win_build html openssl client/os2 client/win clientgui/mac clientlib clienttray curl/include curl/mswin curl/patches lib/mac mac_build mac_installer zip/zip/macos zip/zip/win32 zip/unzip/macos zip/unzip/win32 zlib RSAEuro stripchart coprocs"
|
|
|
|
for DIR in $DIRS; do
|
|
/bin/rm -rf $1/$DIR;
|
|
echo $1/$DIR;
|
|
done
|
|
|
|
echo "Trimming wxWidgets translations..."
|
|
|
|
# remove wxWidgets translations
|
|
find $1/locale -name wxstd.mo -delete
|
|
|
|
echo "Done."
|
|
|
|
tar -cvjf boinc_core_release-$VERSION.tar.bz2 boinc_core_release_$VERSION --exclude=.svn
|