Last active
April 17, 2016 11:05
-
-
Save dbohdan/6a1a576eb0150a33cdf5 to your computer and use it in GitHub Desktop.
Revisions
-
dbohdan revised this gist
Jun 29, 2015 . 2 changed files with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,11 @@ #!/bin/sh set -e # Repo info: https://lists.fedoraproject.org/pipermail/fedora-mono/2013-November/000466.html curl http://download.opensuse.org/repositories/home:/tpokorra:/mono/Fedora_21/home:tpokorra:mono.repo | sudo tee /etc/yum.repos.d/mono.repo sudo dnf install -y mono-opt mono-opt-devel git clone https://github.com/fsharp/fsharp cd fsharp export PATH=$PATH:/opt/mono/bin export PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig ./autogen.sh --prefix /opt/mono This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #!/bin/sh # Run this once you have installed Mono and F# using script above. sudo dnf install -y monodevelop-opt git clone https://github.com/fsharp/fsharpbinding.git cd fsharpbinding/monodevelop . /opt/mono/env.sh -
dbohdan revised this gist
Oct 4, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ #!/bin/sh # Run this once you have installed Mono and F# using script above. sudo yum install -y monodevelop-opt git clone https://github.com/fsharp/fsharpbinding.git cd fsharpbinding/monodevelop -
dbohdan revised this gist
Oct 4, 2014 . 2 changed files with 10 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ sudo yum install -y mono-opt mono-opt-devel git clone https://github.com/fsharp/fsharp cd fsharp export PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig ./autogen.sh --prefix /opt/mono make sudo make install This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ #!/bin/sh # Run this once you have install Mono and F# using script above. sudo yum install -y monodevelop-opt git clone https://github.com/fsharp/fsharpbinding.git cd fsharpbinding/monodevelop . /opt/mono/env.sh ./configure.sh --prefix=/opt/monodevelop/lib/monodevelop make make install -
dbohdan revised this gist
Oct 4, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,7 @@ sudo yum install -y mono-opt mono-opt-devel git clone https://github.com/fsharp/fsharp cd fsharp export PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig . /opt/mono/env.sh ./autogen.sh --prefix /opt/mono make sudo make install -
dbohdan renamed this gist
Oct 4, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
dbohdan created this gist
Oct 4, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #!/bin/sh set -e # Repo info: https://lists.fedoraproject.org/pipermail/fedora-mono/2013-November/000466.html curl http://download.opensuse.org/repositories/home:/tpokorra:/mono/Fedora_20/home:tpokorra:mono.repo | sudo tee /etc/yum.repos.d/mono.repo sudo yum install -y mono-opt mono-opt-devel git clone https://github.com/fsharp/fsharp cd fsharp export PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig ./autogen.sh --prefix /opt/mono make sudo make install