mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 04:44:53 +08:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\linux\library;
|
|
|
|
class icu extends LinuxLibraryBase
|
|
{
|
|
public const NAME = 'icu';
|
|
|
|
protected function build(): void
|
|
{
|
|
$cppflags = 'CPPFLAGS="-DU_CHARSET_IS_UTF8=1 -DU_USING_ICU_NAMESPACE=1 -DU_STATIC_IMPLEMENTATION=1"';
|
|
$cxxflags = 'CXXFLAGS="-std=c++11"';
|
|
$ldflags = 'LDFLAGS="-static"';
|
|
shell()->cd($this->source_dir . '/source')
|
|
->exec(
|
|
"{$cppflags} {$cxxflags} {$ldflags} " .
|
|
'./runConfigureICU Linux ' .
|
|
'--enable-static ' .
|
|
'--disable-shared ' .
|
|
'--with-data-packaging=static ' .
|
|
'--enable-release=yes ' .
|
|
'--enable-extras=yes ' .
|
|
'--enable-icuio=yes ' .
|
|
'--enable-dyload=no ' .
|
|
'--enable-tools=yes ' .
|
|
'--enable-tests=no ' .
|
|
'--enable-samples=no ' .
|
|
'--prefix=' . BUILD_ROOT_PATH
|
|
)
|
|
->exec('make clean')
|
|
->exec("make -j{$this->builder->concurrency}")
|
|
->exec('make install');
|
|
}
|
|
}
|