aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-03-06 06:57:24 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-03-06 06:57:24 +0000
commitec80f167e28fcd3fac8ef4012065fd17ab85ce7c (patch)
tree72c57c0b62ae2c72d58d1b7285ab6706cb61dd34 /build.sh
parent0495e2bc4d59142856c687ba55e9d3db9ce90b9d (diff)
downloadFMark-ec80f167e28fcd3fac8ef4012065fd17ab85ce7c.tar.gz
FMark-ec80f167e28fcd3fac8ef4012065fd17ab85ce7c.zip
Trying to add mono
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh17
1 files changed, 7 insertions, 10 deletions
diff --git a/build.sh b/build.sh
index d588213..624be79 100755
--- a/build.sh
+++ b/build.sh
@@ -11,16 +11,15 @@ if [[ -z $TRAVIS_BUILD_DIR ]]; then
else
echo "Running on travis-ci"
BASE_DIR=$TRAVIS_BUILD_DIR
+ echo "Compiling mono from source"
+ git clone -b mono-5.13.0.308 https://github.com/mono/mono.git
+ cd mono
+ ./autogen.sh --prefix=$PREFIX
+ make
+ make install
+ mono --version
fi
-# deps git autoconf libtool automake build-essential mono-devel gettext cmake
-# git clone -b mono-5.13.0.308 https://github.com/mono/mono.git
-# cd mono
-# ./autogen.sh --prefix=$PREFIX
-# make
-# make install
-# mono --version
-
echo "Downloading paket.exe directly"
curl https://github.com/fsprojects/Paket/releases/download/5.148.0/paket.exe -o $BASE_DIR/FMark/.paket/paket.exe
@@ -33,5 +32,3 @@ echo "Running javascript build"
cd $BASE_DIR/FMark/src/FMarkFable
dotnet restore
dotnet fable yarn-build
-
-cd -