You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.9 KiB
98 lines
2.9 KiB
# -------------------------------------------------------------------- |
|
# This program is free software: you can redistribute it and/or modify |
|
# it under the terms of the GNU General Public License as published by |
|
# the Free Software Foundation, either version 3 of the License, or |
|
# (at your option) any later version. |
|
# |
|
# This program is distributed in the hope that it will be useful, |
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
# GNU General Public License for more details. |
|
# |
|
# You should have received a copy of the GNU General Public License |
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
# --------------------------------------------------------------------- |
|
|
|
#!/bin/sh |
|
|
|
make clean |
|
rm -rf build/linux/release/ |
|
rm -rf install |
|
|
|
QT_PATH="../Qt-sankore3.1" |
|
PLUGINS_PATH="$QT_PATH/plugins" |
|
QMAKE_PATH="$QT_PATH/bin/qmake" |
|
|
|
if [ ! -e "$QMAKE_PATH" ]; then |
|
echo "qmake command not found at $QMAKE_PATH" |
|
exit 1 |
|
fi |
|
|
|
if [ ! -e "$PLUGINS_PATH" ]; then |
|
echo "plugins path not found at $PLUGINS_PATH" |
|
exit 1 |
|
fi |
|
|
|
$QMAKE_PATH -spec linux-g++ |
|
|
|
make -j 4 release-install |
|
|
|
VERSION=`cat build/linux/release/version` |
|
if [ ! -f build/linux/release/version ]; then |
|
echo "version not found" |
|
exit 1 |
|
else |
|
LAST_COMMITED_VERSION="`git describe $(git rev-list --tags --max-count=1)`" |
|
if [ "v$VERSION" != "$LAST_COMMITED_VERSION" ]; then |
|
echo creating a tag with the version $VERSION |
|
git tag -a "v$VERSION" -m "Generating setup for v$VERSION" |
|
git push origin --tags |
|
fi |
|
fi |
|
|
|
cp resources/linux/run.sh build/linux/release/product |
|
chmod +x build/linux/release/product/run.sh |
|
|
|
cp -R resources/linux/qtlinux/* build/linux/release/product/ |
|
|
|
#copying plugins |
|
cp -R $PLUGINS_PATH build/linux/release/product/ |
|
#removing debug version |
|
find build/linux/release/product/ -name *.debug -exec rm {} \; |
|
|
|
#copying custom qt library |
|
QT_LIBRARY_DEST_PATH="build/linux/release/product/qtlib" |
|
mkdir $QT_LIBRARY_DEST_PATH |
|
QT_LIBRARY_SOURCE_PATH="$QT_PATH/lib" |
|
|
|
copyQtLibrary(){ |
|
if [ ! -e "$QT_LIBRARY_SOURCE_PATH/$1.so.4" ]; then |
|
echo "library not found: $QT_LIBRARY_SOURCE_PATH" |
|
exit 1; |
|
fi |
|
cp "$QT_LIBRARY_SOURCE_PATH/$1.so.4" "$QT_LIBRARY_DEST_PATH/" |
|
cp "$QT_LIBRARY_SOURCE_PATH/$1.so.4.7.0" "$QT_LIBRARY_DEST_PATH/" |
|
} |
|
|
|
copyQtLibrary libQtWebKit |
|
copyQtLibrary libphonon |
|
copyQtLibrary libQtDBus |
|
copyQtLibrary libQtScript |
|
copyQtLibrary libQtSvg |
|
copyQtLibrary libQtXmlPatterns |
|
copyQtLibrary libQtNetwork |
|
copyQtLibrary libQtXml |
|
copyQtLibrary libQtGui |
|
copyQtLibrary libQtCore |
|
|
|
|
|
rm -rf install/linux |
|
mkdir -p install/linux |
|
|
|
mv build/linux/release/product build/linux/release/Sankore_3.1.$VERSION |
|
cd build/linux/release |
|
|
|
# "Removing .svn directories ..." |
|
find . -name .svn -exec rm -rf {} \; 2> /dev/null |
|
tar cvzf ../../../install/linux/Sankore\ 3.1.tar.gz Sankore_3.1.$VERSION -C . |
|
echo "Build Finished"; alert
|
|
|