mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-03 23:05:41 +08:00
44 lines
1.5 KiB
PHP
44 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Package\Library;
|
|
|
|
use StaticPHP\Attribute\Package\BuildFor;
|
|
use StaticPHP\Attribute\Package\Library;
|
|
use StaticPHP\Exception\WrongUsageException;
|
|
use StaticPHP\Package\LibraryPackage;
|
|
use StaticPHP\Runtime\Executor\UnixAutoconfExecutor;
|
|
use StaticPHP\Runtime\SystemTarget;
|
|
|
|
#[Library('unixodbc')]
|
|
class unixodbc extends LibraryPackage
|
|
{
|
|
#[BuildFor('Darwin')]
|
|
#[BuildFor('Linux')]
|
|
public function buildUnix(): void
|
|
{
|
|
$sysconf_selector = match ($os = SystemTarget::getTargetOS()) {
|
|
'Darwin' => match (SystemTarget::getTargetArch()) {
|
|
'x86_64' => is_dir('/usr/local/etc') ? '/usr/local/etc' : '/opt/local/etc',
|
|
'aarch64' => is_dir('/opt/homebrew/etc') ? '/opt/homebrew/etc' : '/opt/local/etc',
|
|
default => throw new WrongUsageException('Unsupported architecture: ' . GNU_ARCH),
|
|
},
|
|
'Linux' => '/etc',
|
|
default => throw new WrongUsageException("Unsupported OS: {$os}"),
|
|
};
|
|
UnixAutoconfExecutor::create($this)
|
|
->configure(
|
|
'--disable-debug',
|
|
'--disable-dependency-tracking',
|
|
"--with-libiconv-prefix={$this->getBuildRootPath()}",
|
|
'--with-included-ltdl',
|
|
"--sysconfdir={$sysconf_selector}",
|
|
'--enable-gui=no',
|
|
)
|
|
->make();
|
|
$this->patchPkgconfPrefix(['odbc.pc', 'odbccr.pc', 'odbcinst.pc']);
|
|
$this->patchLaDependencyPrefix();
|
|
}
|
|
}
|