1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name clojure-contrib |
---|
6 | version git-20091102 |
---|
7 | categories lang java |
---|
8 | maintainers gmail.com:ian.eure |
---|
9 | description The Clojure programming language (1.0) - Contrib |
---|
10 | long_description Clojure is a dynamic programming language for the JVM. \ |
---|
11 | It is interactive, yet compiled, with a robust \ |
---|
12 | infrastructure for concurrency. It is a functional \ |
---|
13 | dialect of Lisp, with a rich set of immutable, \ |
---|
14 | persistent data structures and a macro system. |
---|
15 | homepage http://clojure.org/ |
---|
16 | platforms darwin |
---|
17 | depends_build port:clojure |
---|
18 | master_sites github:richhickey/clojure-contrib |
---|
19 | |
---|
20 | fetch.type git |
---|
21 | git.url git://github.com/richhickey/clojure-contrib.git |
---|
22 | git.branch 7e11a5525bc35083ebdf53484cbdfb76755b252f |
---|
23 | |
---|
24 | use_configure no |
---|
25 | |
---|
26 | build.cmd ant |
---|
27 | build.target jar |
---|
28 | |
---|
29 | destroot { |
---|
30 | set javadir ${destroot}${prefix}/share/java |
---|
31 | set clojuredir ${javadir}/clojure/lib |
---|
32 | set contribjar ${clojuredir}/clojure-contrib.jar |
---|
33 | |
---|
34 | xinstall -m 0755 -d ${javadir} |
---|
35 | xinstall -m 0755 -d ${clojuredir} |
---|
36 | xinstall -m 0644 -W ${worksrcpath} ${name}.jar ${contribjar} |
---|
37 | } |
---|