Ticket #35866: rebar-2.0.0.diff
File rebar-2.0.0.diff, 1.2 KB (added by ryandesign (Ryan Carsten Schmidt), 12 years ago) |
---|
-
Portfile
4 4 PortSystem 1.0 5 5 PortGroup github 1.0 6 6 7 # no real version available (no tags inside git repo) 8 github.setup basho rebar 0.0.2 7 github.setup basho rebar 2.0.0 9 8 categories erlang devel 10 9 platforms darwin 11 10 maintainers uwe-arzt.de:mail openmaintainer … … 24 23 25 24 homepage ${github.homepage}/wiki 26 25 27 fetch.type git 28 git.branch d203ff17d79a3a3cd6dc01b77e53268483251d22 26 checksums rmd160 25d2cf63ae346cb92a11ab8d84e43f848b9ff734 \ 27 sha256 237561ee22e221924edbe7364b556151d1be89a3c661a1d8983c7b99384ea978 29 28 30 29 depends_lib port:erlang 31 30 32 # configure and build phase33 31 use_configure no 32 34 33 build.cmd ./bootstrap 35 34 36 # destroot phase37 35 destroot { 38 36 xinstall -m 755 ${worksrcpath}/rebar ${destroot}${prefix}/bin 37 38 set docdir ${prefix}/share/doc/${subport} 39 xinstall -d ${destroot}${docdir} 40 xinstall -m 644 -W ${worksrcpath} \ 41 LICENSE \ 42 NOTES.org \ 43 README.md \ 44 THANKS \ 45 ${destroot}${docdir} 39 46 } 40 47