Ah, yes, I cannot upload new binary distributions. 

Building from souce on *nix/Mono can be done with nuget.  It's of pain 
approximately equal to what Robert wrote.  
I just tried the following 

1. Clone the repo or pull down the zip of the 1.5RC1 tag 
from https://github.com/clojure/clojure-clr/tags.
2. Get the DLR libs -- libs.zip 
from https://github.com/clojure/clojure-clr/downloads  and unzip into the 
lib subdirectory of clojure-clr
3. Download NUnit from  http://nunit.com/index.php?p=download.  Grab 
nunit.framework.dll and the dlls in the lib subdir of Nunit and put in the 
lib subdir of clojure-clr.

*---------------------------------NUnit 
Edit----------------------------------------------------------*
4. In a text editor open the "Clojure.Tests.csproj" file located in 
"clojure-clr/Clojure/Clojure.Tests".   Change the "nunit.framework" 
configuration from:

Original Configuration
 <Reference Include="nunit.framework, Version=2.6.0.12051, Culture=neutral, 
PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
      
<HintPath>..\packages\NUnit.2.6.0.12054\lib\nunit.framework.dll</HintPath>
    </Reference> 

Change Configuration to this 
<Reference Include="nunit.framework">
      <HintPath>..\..\lib\NUnit.2.6.2\lib\nunit.framework.dll</HintPath>
    </Reference>
*---------------------------------NUnit 
Edit----------------------------------------------------------*

5. Finaly from the directory "clojure-clr/Clojure" run either:

MONO_IOMAP=all xbuild build.proj /target:Build /p:Configuration="Release 
4.0" /p:Platform="Any CPU"

or
MONO_IOMAP=all xbuild build.proj /target:Build /p:Configuration="Debug 4.0" 
/p:Platform="Any CPU"

After the build the binaries will be located in 
"clojure-clr/bin/4.0\{Release || Debug}"

Do

  mono Clojure.Main.exe

to run.

-David

On Tuesday, January 1, 2013 10:31:33 AM UTC-6, Konrad Hinsen wrote:
>
> dmiller writes: 
>
>  > A casualty of github deprecating downloads.  The Download button is 
>  > gone, but the binary downloads are still available for a short 
>  > while longer at 
>  > 
>  > https://github.com/clojure/clojure-clr/downloads 
>  > 
>  > I've updated the wiki page. 
>
> Thanks! But release 1.5.0 RC 1 isn't there, the latest one is 1.4.1. 
>
>  > I have not tried Robert's instructions yet.   From what I can tell, 
> getting nuget 
>  > running in a *nix/Mono environment is still not trivial. 
>
> Sounds... reassuring ;-) 
>
> It seems that for now, the only way to run ClojureCLR under Linux or MacOS 
> is to 
> build binaries under Windows from the source code first, right? 
>
> Konrad. 
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to