Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Commit 5c977a1

Browse files
committed
Merge pull request #8 from panesofglass/windows-build
Match build.fsx to Makefile #7
2 parents 643a32d + 63a7153 commit 5c977a1

9 files changed

+90
-61
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
*.swp
22
*.pyc
3+
paket.exe
34
ftplugin/bin/
5+
packages/

README.mkd

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ build_commands = ['curl', 'make', 'mozroots', 'touch', 'unzip']
6060

6161
1. Install [pathogen][pathogen] and [syntastic][syntastic]
6262

63-
2. Run _install.cmd_
63+
2. Run _install.cmd_
6464

65-
3. Currently you will most likely need to set g:fsharp_xbuild_path and g:fsharp_interactive_bin to approapriate values.
65+
3. Currently you will most likely need to set g:fsharp_xbuild_path and g:fsharp_interactive_bin to appropriate values.
6666

6767
####Syntastic
6868

build.fsx

-49
This file was deleted.

install.cmd

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
@echo off
22

3-
pushd %~dp0
4-
53
IF EXIST packages\FAKE\tools\Fake.exe GOTO FAKEINSTALLED
64

7-
"..\lib\nuget\NuGet.exe" "install" "FAKE" "-OutputDirectory" "packages" "-ExcludeVersion" "-Prerelease"
8-
9-
:FAKEINSTALLED
5+
paket.bootstrapper.exe
6+
if errorlevel 1 (
7+
exit /b %errorlevel%
8+
)
109

11-
SET TARGET="All"
10+
paket.exe restore
11+
if errorlevel 1 (
12+
exit /b %errorlevel%
13+
)
1214

13-
IF NOT [%1]==[] (set TARGET="%1")
14-
15-
"packages\FAKE\tools\Fake.exe" "build.fsx" "target=%TARGET%"
15+
:FAKEINSTALLED
1616

17-
popd
17+
packages\FAKE\tools\FAKE.exe install.fsx %*
1818

install.fsx

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// include Fake lib
2+
#r "packages/FAKE/tools/FakeLib.dll"
3+
open Fake
4+
open System
5+
open System.IO
6+
open System.Net
7+
open System.Text.RegularExpressions
8+
9+
let homeVimPath =
10+
if Environment.OSVersion.Platform = PlatformID.Unix || Environment.OSVersion.Platform = PlatformID.MacOSX then
11+
Environment.GetEnvironmentVariable("HOME") @@ ".vim"
12+
else Environment.ExpandEnvironmentVariables("%HOMEDRIVE%%HOMEPATH%") @@ "vimfiles"
13+
14+
let vimInstallDir = homeVimPath @@ "bundle/fsharpbinding-vim"
15+
16+
let vimBinDir = __SOURCE_DIRECTORY__ @@ "ftplugin/bin"
17+
let ftpluginDir = __SOURCE_DIRECTORY__ @@ "ftplugin"
18+
let autoloadDir = __SOURCE_DIRECTORY__ @@ "autoload"
19+
let syntaxDir = __SOURCE_DIRECTORY__ @@ "syntax"
20+
let ftdetectDir = __SOURCE_DIRECTORY__ @@ "ftdetect"
21+
let syntaxCheckersDir = __SOURCE_DIRECTORY__ @@ "syntax_checkers"
22+
23+
let acArchive = "fsautocomplete.zip"
24+
let acVersion = "0.15.0"
25+
26+
Target "FSharp.AutoComplete" (fun _ ->
27+
CreateDir vimBinDir
28+
use client = new WebClient()
29+
tracefn "Downloading version %s of FSharp.AutoComplete" acVersion
30+
client.DownloadFile(sprintf "https://github.com/fsharp/FSharp.AutoComplete/releases/download/%s/%s" acVersion acArchive, vimBinDir @@ acArchive)
31+
tracefn "Download complete"
32+
tracefn "Unzipping"
33+
Unzip vimBinDir (vimBinDir @@ acArchive))
34+
35+
Target "Install" (fun _ ->
36+
DeleteDir vimInstallDir
37+
CreateDir vimInstallDir
38+
CopyDir (vimInstallDir @@ "ftplugin") ftpluginDir (fun _ -> true)
39+
CopyDir (vimInstallDir @@ "autoload") autoloadDir (fun _ -> true)
40+
CopyDir (vimInstallDir @@ "syntax") syntaxDir (fun _ -> true)
41+
CopyDir (vimInstallDir @@ "syntax_checkers") syntaxCheckersDir (fun _ -> true)
42+
CopyDir (vimInstallDir @@ "ftdetect") ftdetectDir (fun _ -> true))
43+
44+
Target "Clean" (fun _ ->
45+
CleanDirs [ vimBinDir; vimInstallDir ])
46+
47+
Target "All" id
48+
49+
"FSharp.AutoComplete"
50+
==> "Install"
51+
==> "All"
52+
53+
RunTargetOrDefault "All"

install.sh

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
if ! [ -e ./packages/FAKE/tools/Fake.exe ]
2+
then
3+
mono paket.bootstrapper.exe
4+
exit_code=$?
5+
if [ $exit_code -ne 0 ]; then
6+
exit $exit_code
7+
fi
8+
9+
mono paket.exe restore
10+
exit_code=$?
11+
if [ $exit_code -ne 0 ]; then
12+
exit $exit_code
13+
fi
14+
fi
15+
16+
mono packages/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO install.fsx

paket.bootstrapper.exe

28 KB
Binary file not shown.

paket.dependencies

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source https://nuget.org/api/v2
2+
3+
nuget FAKE

paket.lock

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
NUGET
2+
remote: https://nuget.org/api/v2
3+
specs:
4+
FAKE (3.33.0)

0 commit comments

Comments
 (0)