Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
taste-setup
Commits
5c89f3a4
Commit
5c89f3a4
authored
Sep 26, 2017
by
Maxime Perrotin
Browse files
Merge branch 'mscedit2'
parents
b96e0416
0d0026b4
Changes
5
Hide whitespace changes
Inline
Side-by-side
.gitmodules
View file @
5c89f3a4
...
...
@@ -49,6 +49,12 @@
[submodule "components_library"]
path = components_library
url = https://gitrepos.estec.esa.int/taste/components_library
[submodule "mscedit2"]
path = mscedit2
url = https://gitrepos.estec.esa.int/ivany4/opengeode.git
[submodule "mscc"]
path = mscc
url = https://gitrepos.estec.esa.int/ivany4/mscc.git
[submodule "upython-taste"]
path = upython-taste
url = https://gitrepos.estec.esa.int/taste/uPython-mirror.git
install/16_mscc.sh
0 → 100755
View file @
5c89f3a4
#!/bin/bash
DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
.
${
DIR
}
/common.sh
# Install tools necesarry for Mscc compilation
sudo
apt-get
install
-y
mono-devel mono-xbuild
||
exit
1
# Compile Mscc
pushd
"
${
DIR
}
/../mscc"
>
/dev/null
git submodule update
--init
make release
# Move binaries to the installation folder
mkdir
-p
${
PREFIX
}
/share/mscc/
||
exit
1
mv
bin/Release/
*
"
${
PREFIX
}
/share/mscc/"
popd
>
/dev/null
cd
${
PREFIX
}
/share/
||
exit
1
# Add to PATH
PATH_CMD
=
'export PATH=$PATH:'
"
${
PREFIX
}
/share/mscc/"
UpdatePATH
install/57_mscedit2.sh
0 → 100755
View file @
5c89f3a4
#!/bin/bash
DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
.
${
DIR
}
/common.sh
# Install development tools to compile (pyside-rcc)
# Note: Opengeode does not need this, because they check in
# all temporary files into the repo. These have been ignored in
# mscedit2, therefore they need to be compiled explicitly.
sudo
apt-get
install
-y
pyside-tools
||
exit
1
cd
$DIR
/../mscedit2
||
exit
1
make
pip2
install
--user
--upgrade
.
||
exit
1
# Add .local/bin to PATH
PATH_CMD
=
'export PATH=$PATH:$HOME/.local/bin'
UpdatePATH
mscc
@
39781de9
Subproject commit 39781de9d9a7f3425360eb8d9e4e7f81616e0a53
mscedit2
@
adbefde1
Subproject commit adbefde14a5860e2a43af84132c872d61fc43d60
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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