Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
94c409b9
Commit
94c409b9
authored
Jun 30, 2011
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed install problem on linux. Added qt custom library
parent
73804c68
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
6 deletions
+49
-6
release.linux.sh
release.linux.sh
+48
-3
run.sh
resources/linux/run.sh
+1
-3
No files found.
release.linux.sh
View file @
94c409b9
...
...
@@ -2,8 +2,23 @@
make clean
rm
-rf
build/linux/release/
rm
-rf
install
/usr/bin/qmake-qt4
QT_PATH
=
"/usr/local/Trolltech/Qt-4.7.0"
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
...
...
@@ -25,7 +40,36 @@ chmod +x build/linux/release/product/run.sh
cp
-R
resources/linux/qtlinux/
*
build/linux/release/product/
cp
-R
/usr/lib/qt4/plugins 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
...
...
@@ -35,4 +79,5 @@ 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
.
tar
cvzf ../../../install/linux/Sankore
\
3.1.tar.gz Sankore_3.1.
$VERSION
-C
.
echo
"Build Finished"
;
alert
resources/linux/run.sh
View file @
94c409b9
#!/bin/sh
LD_LIBRARY_PATH
=
$PWD
/lib:
$LD_LIBRARY_PATH
export
LD_LIBRARY_PATH
./Sankore
\
3.1
env
LD_LIBRARY_PATH
=
$PWD
/qtlib:
$LD_LIBRARY_PATH
./Sankore
\
3.1
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment