You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
74 lines
2.3 KiB
Tcl
74 lines
2.3 KiB
Tcl
# -*- 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 spring-boot-cli
|
|
version 2.4.4
|
|
revision 0
|
|
|
|
categories java
|
|
platforms darwin
|
|
maintainers {breun.nl:nils @breun} openmaintainer
|
|
license Apache-2
|
|
supported_archs noarch
|
|
|
|
description Spring Boot CLI -- An opinionated view of building \
|
|
production-ready Spring applications.
|
|
|
|
long_description The Spring Boot CLI is a command line tool that can be used \
|
|
if you want to quickly prototype with Spring. It allows you to \
|
|
run Groovy scripts, which means that you have a familiar \
|
|
Java-like syntax, without much boilerplate code. \
|
|
\
|
|
You don't need to use the CLI to work with Spring Boot but \
|
|
it's definitely the quickest way to get a Spring application \
|
|
off the ground.
|
|
|
|
homepage https://projects.spring.io/spring-boot/
|
|
master_sites https://repo.spring.io/release/org/springframework/boot/${name}/${version}/
|
|
|
|
distname ${name}-${version}-bin
|
|
|
|
checksums rmd160 443bd98cd6244d9dffc2c9f551db17904dc13266 \
|
|
sha256 d0b5e2293db691a706f5fed6547e0921362f0168d03e2707a104c814f1af3318 \
|
|
size 11702754
|
|
|
|
worksrcdir spring-${version}.RELEASE
|
|
|
|
use_configure no
|
|
|
|
java.version 1.8+
|
|
java.fallback openjdk8
|
|
|
|
build {}
|
|
|
|
destroot {
|
|
set target ${destroot}${prefix}/share/java/${name}
|
|
|
|
# Create the target java directory
|
|
xinstall -m 755 -d ${target}
|
|
|
|
# Copy over the needed elements of our directory tree
|
|
foreach d { bin lib } {
|
|
copy ${worksrcpath}/${d} ${target}
|
|
}
|
|
|
|
# Remove extraneous bat files
|
|
foreach f [glob -directory ${target}/bin *.bat] {
|
|
delete ${f}
|
|
}
|
|
|
|
# Add symlink to the script
|
|
ln -s ../share/java/${name}/bin/spring ${destroot}${prefix}/bin
|
|
}
|
|
|
|
variant bash_completion {
|
|
depends_run-append path:etc/bash_completion:bash-completion
|
|
post-destroot {
|
|
xinstall -d ${destroot}${prefix}/etc/bash_completion.d
|
|
copy ${worksrcpath}/shell-completion/bash/spring \
|
|
${destroot}${prefix}/etc/bash_completion.d/spring
|
|
}
|
|
}
|