I am using the svn version 1086 and this works fine for me.

If you have never used subversion don't worry it is very simple to
use.

Here are basic instructions.

Download ant from
    http://ant.apache.org/bindownload.cgi

Supposing you downloaded     apache-ant-1.7.1-bin.tar.gz

Open a terminal and untar the resulting tar.gz uzing

    tar -xvzf apache-ant-1.7.1-bin.tar.gz

You can either leave the apache-ant-1.7.1 where it is, or move it to a
sensible location, my preference is

    sudo mv apache-ant /usr/local
    sudo ln -sf /usr/local/apache-ant-1.7.1 /usr/local/ant

Then add the following to your ~/.bashrc or whatever shell equivalent
you are using

export PATH=$PATH:/usr/local/ant/bin

Download subversion from

http://www.metissian.com/projects/macosx/subversion/

Choose the 1.3 dmg

Install subversion

Open a terminal and cut and paste the line immediately below this one
into the terminal

    svn co https://clojure.svn.sourceforge.net/svnroot/clojure clojure

This will create a new directory ./clojure

cd to the following path

    ./clojure/trunk

Type:

    ant

When ant completes you will have a new clojure .jar in the directory,
I move mine to ~/.clojure and include that diretory in my classpath.

You should now be good to go.  Good luck

-jh




On Nov 9, 8:43 pm, "Stephen C. Gilardi" <[EMAIL PROTECTED]> wrote:
> On Nov 9, 2008, at 9:57 PM, [EMAIL PROTECTED] wrote:
>
> > I've downloaded clojure as described in the getting started pages.
> > When I run clojure as described it works and I can execute the
> > JOptionPane example and it appears and works.
>
> I downloaded clojure_20080916.zip, expanded it, ran "ant" within it  
> and then started clojure with:
>
>         java -jar clojure.jar
>
> on Leopard using Java 1.6.0_07 and it works:
>
> user=> (System/getProperties)
> {java.runtime.name=Java(TM) SE Runtime Environment,  
> sun.boot.library.path=/System/Library/ ...
>
> If you're checking Clojure out using svn, we're in a transitional time  
> at the HEAD (seehttp://clojure.svn.sourceforge.net/viewvc/clojure/).  
> The most recent recommended version for general use is 1088.
>
>         svn update -r 1088
>
> or
>
>         svn co -r 1088
>
> If you continue to have trouble, please give more detail about your  
> hardware (ppc vs. intel) and software (os and java versions) setup and  
> what steps you're following.
>
> --Steve
--~--~---------~--~----~------------~-------~--~----~
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
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to