# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 PortSystem 1.0 PortGroup java 1.0 name gradle version 8.13 revision 0 categories devel java groovy license Apache-2 maintainers {amake @amake} openmaintainer description An open-source build system that is based on the Groovy language long_description Gradle is a build system which offers you ease, power and freedom. \ You can choose the balance for yourself. It has powerful multi-project build \ support. It has a layer on top of Ivy that provides a build-by-convention \ integration for Ivy. It gives you always the choice between the flexibility \ of Ant and the convenience of a build-by-convention behavior. homepage https://gradle.org/ platforms {darwin any} supported_archs noarch distname ${name}-${version}-bin master_sites https://services.gradle.org/distributions # Update checksums for variant when updating these! checksums rmd160 e0bad789e4b2e22bb2f14c6dca444b4b25229d37 \ sha256 20f1b1176237254a6fc204d8434196fa11a4cfb387567519c61556e8710aed78 \ size 136983045 worksrcdir ${name}-${version} use_zip yes use_configure no java.version 1.8+ java.fallback openjdk8 build {} pre-destroot { # Remove extraneous bat files delete {*}[glob ${worksrcpath}/bin/*.bat] } destroot { # Create the target java directory xinstall -m 0755 -d ${destroot}${prefix}/share/java/${name} # Copy over the needed elements of our directory tree copy ${worksrcpath}/bin \ ${worksrcpath}/lib \ ${worksrcpath}/LICENSE \ ${worksrcpath}/NOTICE \ ${worksrcpath}/README \ ${destroot}${prefix}/share/java/${name} # Symlink gradle into the bin directory ln -s ${prefix}/share/java/${name}/bin/gradle ${destroot}${prefix}/bin } variant all description {Install supplemental documentation and source code} { distname ${name}-${version}-all checksums rmd160 0cfe7a46d6dfa96298e7a9e98d4d05d9f0e5d304 \ sha256 fba8464465835e74f7270bbf43d6d8a8d7709ab0a43ce1aa3323f73e9aa0c612 \ size 232036537 post-destroot { xinstall -m 0755 -d ${destroot}${prefix}/share/doc/${name} copy ${worksrcpath}/src \ ${worksrcpath}/docs \ ${destroot}${prefix}/share/doc/${name} } } notes { For Bash and Zsh completion support, install port 'gradle-completion'. } livecheck.type regex livecheck.url ${master_sites} livecheck.regex ${name}-(\\d+\\.\\d+(\\.\\d+)?)-all\\.zip