Ticket #44982: tokyocabinet-clj.diff
File tokyocabinet-clj.diff, 1.7 KB (added by ryandesign (Ryan Carsten Schmidt), 10 years ago) |
---|
-
Portfile
2 2 # $Id$ 3 3 4 4 PortSystem 1.0 5 PortGroup github 1.0 5 6 7 github.setup JustinTulloss tokyo-cabinet-clj cfab6104b9f3635f97968fda526218c8a706954d 6 8 name tokyocabinet-clj 7 9 version 20090505 8 10 categories databases java 9 11 maintainers ieure 10 12 license MIT 13 supported_archs noarch 14 11 15 description Java API for Tokyo Cabinet, a modern DBM 12 16 long_description Clojure is a dynamic programming language for the JVM. 13 17 14 homepage http://github.com/JustinTulloss/tokyo-cabinet-clj/tree/master15 18 platforms darwin 16 depends_build port:tokyocabinet port:tokyocabinet-java17 19 18 fetch.type git 19 git.url git://github.com/JustinTulloss/tokyo-cabinet-clj.git 20 git.branch cfab6104b9f3635f97968fda526218c8a706954d 20 checksums rmd160 931581c65f5ce85ec9c6cd73d7f7b995159e792f \ 21 sha256 a494737ebd50d9ca192964d88468406597380d12e19640fbf777142b059a4b6a 21 22 22 variant universal {} 23 depends_build bin:ant:apache-ant port:tokyocabinet port:tokyocabinet-java 23 24 24 ## configure ##25 25 use_configure no 26 26 27 ## build ##28 27 build.cmd ant 29 28 build.target jar 30 29 … … 32 31 set javadir ${destroot}${prefix}/share/java 33 32 set clojuredir ${javadir}/clojure/lib 34 33 set jarfile tokyo-cabinet.jar 35 set destfile ${clojuredir}/${jarfile}36 34 37 xinstall -m 0755 -d ${javadir}38 35 xinstall -m 0755 -d ${clojuredir} 39 xinstall -m 0644 -W ${worksrcpath} ${jarfile} ${ destfile}36 xinstall -m 0644 -W ${worksrcpath} ${jarfile} ${clojuredir} 40 37 }