mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 05:14:52 +08:00
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\unix\library;
|
|
|
|
use SPC\exception\FileSystemException;
|
|
use SPC\exception\RuntimeException;
|
|
use SPC\store\FileSystem;
|
|
|
|
trait libssh2
|
|
{
|
|
/**
|
|
* @throws RuntimeException
|
|
* @throws FileSystemException
|
|
*/
|
|
protected function build(): void
|
|
{
|
|
$enable_zlib = $this->builder->getLib('zlib') !== null ? 'ON' : 'OFF';
|
|
|
|
FileSystem::resetDir($this->source_dir . '/build');
|
|
shell()->cd($this->source_dir . '/build')
|
|
->exec(
|
|
'cmake ' .
|
|
'-DCMAKE_BUILD_TYPE=Release ' .
|
|
"-DCMAKE_TOOLCHAIN_FILE={$this->builder->cmake_toolchain_file} " .
|
|
'-DCMAKE_INSTALL_PREFIX=' . BUILD_ROOT_PATH . ' ' .
|
|
'-DCMAKE_INSTALL_LIBDIR=lib ' .
|
|
'-DBUILD_SHARED_LIBS=OFF ' .
|
|
'-DBUILD_EXAMPLES=OFF ' .
|
|
'-DBUILD_TESTING=OFF ' .
|
|
"-DENABLE_ZLIB_COMPRESSION={$enable_zlib} " .
|
|
'..'
|
|
)
|
|
->exec("cmake --build . -j {$this->builder->concurrency}")
|
|
->exec('make install');
|
|
$this->patchPkgconfPrefix(['libssh2.pc']);
|
|
}
|
|
}
|