mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
75 lines
2.1 KiB
Tcl
75 lines
2.1 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
|
|
|
|
version 5.17.1
|
|
revision 0
|
|
|
|
if {${os.major} >= 17} {
|
|
set source_build yes
|
|
} else {
|
|
set source_build no
|
|
}
|
|
|
|
if ${source_build} {
|
|
PortGroup golang 1.0
|
|
|
|
go.setup github.com/symfony-cli/symfony-cli ${version} v
|
|
} else {
|
|
PortGroup github 1.0
|
|
|
|
github.setup symfony-cli symfony-cli ${version} v
|
|
}
|
|
|
|
name symfony-cli
|
|
|
|
homepage https://symfony.com/download
|
|
|
|
description The Symfony CLI tool
|
|
|
|
long_description The Symfony CLI tool is a must-have tool when developing \
|
|
Symfony applications on your local machine.
|
|
|
|
categories devel
|
|
installs_libs no
|
|
license AGPL-3+
|
|
maintainers {@antalaron antalaron.hu:antalaron} \
|
|
openmaintainer
|
|
|
|
if ${source_build} {
|
|
# Allow Go to fetch dependencies at build time
|
|
go.offline_build no
|
|
build.env CGO_ENABLED=0
|
|
build.args -o ${workpath}/symfony -trimpath -ldflags="-s -w -X 'main.version=${version}' -X 'main.channel=stable'"
|
|
|
|
use_parallel_build no
|
|
|
|
checksums rmd160 c77dc9c1a99aba4e32434b37cef8e388f6463fe6 \
|
|
sha256 879782e8b8c6d6263e4d2a72f2283879f1c645c5f87db5cdd8a4bd8182e2ee37 \
|
|
size 291243
|
|
} else {
|
|
build {}
|
|
|
|
distname symfony-cli_darwin_all
|
|
|
|
checksums rmd160 121b3094df282f922b2693d136c4fc0a9e99bcd7 \
|
|
sha256 4e25680428e99f44a4eaf19f33dc51ef9fac27508b08c68a4ff08877213a6f97 \
|
|
size 12441360
|
|
|
|
github.tarball_from releases
|
|
|
|
use_configure no
|
|
}
|
|
|
|
destroot {
|
|
if ${source_build} {
|
|
if {${configure.build_arch} eq {arm64}} {
|
|
system "codesign -f -s - ${workpath}/symfony"
|
|
}
|
|
}
|
|
|
|
xinstall -m 0755 -W ${workpath} symfony ${destroot}${prefix}/bin
|
|
}
|
|
|
|
github.livecheck.regex {([0-9.]+)}
|