Last change
on this file since 23385 was 23385, checked in by jdquinn, 6 years ago |
CHG: Modified Windows 10 build and packager to use precompiled versions of gmsh and gmt
|
-
Property svn:executable
set to
*
|
File size:
490 bytes
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 | set -eu
|
---|
3 |
|
---|
4 | # Set gmsh version
|
---|
5 | VER="3.0.5"
|
---|
6 |
|
---|
7 | # Set tarball name
|
---|
8 | TARBALL_NAME="gmsh-${VER}-win64-precompiled"
|
---|
9 | TARBALL=${TARBALL_NAME}.tar.gz
|
---|
10 |
|
---|
11 | # Clean up from previous installation
|
---|
12 | rm -rf install
|
---|
13 |
|
---|
14 | # Download Windows 64-bit precompiled gmsh from ISSM server
|
---|
15 | $ISSM_DIR/scripts/DownloadExternalPackage.py "http://issm.jpl.nasa.gov/files/externalpackages/${TARBALL}" "${TARBALL}"
|
---|
16 |
|
---|
17 | # Untar gmsh
|
---|
18 | tar -xvzf $TARBALL
|
---|
19 |
|
---|
20 | # Rename untarred dir
|
---|
21 | mv $TARBALL_NAME install
|
---|
22 |
|
---|
23 | # Clean up
|
---|
24 | rm -f $TARBALL
|
---|
Note:
See
TracBrowser
for help on using the repository browser.