mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 12:54:52 +08:00
27 lines
789 B
PHP
27 lines
789 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace SPC\builder\unix\library;
|
||
|
|
|
||
|
|
use SPC\store\FileSystem;
|
||
|
|
|
||
|
|
trait libargon2
|
||
|
|
{
|
||
|
|
protected function build()
|
||
|
|
{
|
||
|
|
shell()->cd($this->source_dir)
|
||
|
|
->exec("make {$this->builder->configure_env} PREFIX='' clean")
|
||
|
|
->exec("make -j{$this->builder->concurrency} PREFIX=''")
|
||
|
|
->exec("make install PREFIX='' DESTDIR=" . BUILD_ROOT_PATH);
|
||
|
|
|
||
|
|
$this->patchPkgconfPrefix(['libargon2.pc']);
|
||
|
|
|
||
|
|
foreach (FileSystem::scanDirFiles(BUILD_ROOT_PATH . '/lib/', false, true) as $filename) {
|
||
|
|
if (str_starts_with($filename, 'libargon2') && (str_contains($filename, '.so') || str_ends_with($filename, '.dylib'))) {
|
||
|
|
unlink(BUILD_ROOT_PATH . '/lib/' . $filename);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|