mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-11 19:05:35 +08:00
Add preliminary MacPorts support
This commit is contained in:
@@ -45,6 +45,18 @@ class MacOSToolCheck
|
||||
return CheckResult::ok();
|
||||
}
|
||||
|
||||
#[CheckItem('if macports has installed', limit_os: 'Darwin', level: 998)]
|
||||
public function checkPorts(): ?CheckResult
|
||||
{
|
||||
if (($path = MacOSUtil::findCommand('port')) === null) {
|
||||
return CheckResult::fail('MacPorts is not installed', 'port');
|
||||
}
|
||||
if ($path !== '/opt/local/bin/port' && getenv('GNU_ARCH') === 'aarch64') {
|
||||
return CheckResult::fail('Current macports (/opt/local/bin/port) is not installed for M1 Mac, please re-install macports!');
|
||||
}
|
||||
return CheckResult::ok();
|
||||
}
|
||||
|
||||
#[CheckItem('if necessary tools are installed', limit_os: 'Darwin')]
|
||||
public function checkCliTools(): ?CheckResult
|
||||
{
|
||||
@@ -74,6 +86,20 @@ class MacOSToolCheck
|
||||
return null;
|
||||
}
|
||||
|
||||
#[CheckItem('if macports llvm are installed', limit_os: 'Darwin')]
|
||||
public function checkPortsLLVM(): ?CheckResult
|
||||
{
|
||||
if (getenv('SPC_USE_LLVM') === 'port') {
|
||||
$macports_prefix = getenv('MACPORTS_PREFIX') ?: '/opt/local';
|
||||
|
||||
if (($path = MacOSUtil::findCommand('clang', ["{$macports_prefix}/bin"])) === null) {
|
||||
return CheckResult::fail('MacPorts llvm is not installed', 'build-tools', ['missing' => ['llvm']]);
|
||||
}
|
||||
return CheckResult::ok($path);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
#[CheckItem('if bison version is 3.0 or later', limit_os: 'Darwin')]
|
||||
public function checkBisonVersion(array $command_path = []): ?CheckResult
|
||||
{
|
||||
@@ -91,7 +117,7 @@ class MacOSToolCheck
|
||||
if ($command_path !== []) {
|
||||
return CheckResult::fail("Current {$bison} version is too old: " . $matches[0]);
|
||||
}
|
||||
return $this->checkBisonVersion(['/opt/homebrew/opt/bison/bin', '/usr/local/opt/bison/bin']);
|
||||
return $this->checkBisonVersion(['/opt/homebrew/opt/bison/bin', '/usr/local/opt/bison/bin', '/opt/local/bin']);
|
||||
}
|
||||
return CheckResult::ok($matches[0]);
|
||||
}
|
||||
@@ -108,6 +134,9 @@ class MacOSToolCheck
|
||||
#[FixItem('build-tools')]
|
||||
public function fixBuildTools(array $missing): bool
|
||||
{
|
||||
$hasBrew = $this->checkBrew()?->isOK();
|
||||
$hasMacports = $this->checkPorts()?->isOK();
|
||||
|
||||
$replacement = [
|
||||
'glibtoolize' => 'libtool',
|
||||
];
|
||||
@@ -115,7 +144,18 @@ class MacOSToolCheck
|
||||
if (isset($replacement[$cmd])) {
|
||||
$cmd = $replacement[$cmd];
|
||||
}
|
||||
shell()->exec('brew install --formula ' . escapeshellarg($cmd));
|
||||
|
||||
if ($hasBrew) {
|
||||
shell()->exec('brew install --formula ' . escapeshellarg($cmd));
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($hasMacports) {
|
||||
shell()->exec('port install ' . escapeshellarg($cmd));
|
||||
continue;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user