2023-03-21 01:51:52 +08:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2022 Yun Dou <dixyes@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* lwmbs is licensed under Mulan PSL v2. You can use this
|
|
|
|
|
* software according to the terms and conditions of the
|
|
|
|
|
* Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at:
|
|
|
|
|
*
|
|
|
|
|
* http://license.coscl.org.cn/MulanPSL2
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
|
|
|
|
|
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
|
|
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
|
|
|
*
|
|
|
|
|
* See the Mulan PSL v2 for more details.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace SPC\builder\linux\library;
|
|
|
|
|
|
|
|
|
|
use SPC\builder\linux\SystemUtil;
|
|
|
|
|
use SPC\exception\FileSystemException;
|
|
|
|
|
use SPC\exception\RuntimeException;
|
2023-08-20 19:51:45 +08:00
|
|
|
use SPC\exception\WrongUsageException;
|
2023-03-21 01:51:52 +08:00
|
|
|
|
|
|
|
|
class openssl extends LinuxLibraryBase
|
|
|
|
|
{
|
|
|
|
|
public const NAME = 'openssl';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @throws FileSystemException
|
2023-08-20 19:51:45 +08:00
|
|
|
* @throws RuntimeException
|
|
|
|
|
* @throws WrongUsageException
|
2023-03-21 01:51:52 +08:00
|
|
|
*/
|
2023-08-20 19:51:45 +08:00
|
|
|
public function build(): void
|
2023-03-21 01:51:52 +08:00
|
|
|
{
|
2023-08-20 19:51:45 +08:00
|
|
|
[,,$destdir] = SEPARATED_PATH;
|
2023-03-21 01:51:52 +08:00
|
|
|
|
|
|
|
|
$extra = '';
|
|
|
|
|
$ex_lib = '-ldl -pthread';
|
|
|
|
|
|
|
|
|
|
$env = $this->builder->pkgconf_env . " CFLAGS='{$this->builder->arch_c_flags}'";
|
2023-08-20 19:51:45 +08:00
|
|
|
$env .= " CC='{$this->builder->getOption('cc')} -static -idirafter " . BUILD_INCLUDE_PATH .
|
2023-03-21 01:51:52 +08:00
|
|
|
' -idirafter /usr/include/ ' .
|
2023-08-20 19:51:45 +08:00
|
|
|
' -idirafter /usr/include/' . $this->builder->getOption('arch') . '-linux-gnu/ ' .
|
2023-03-21 01:51:52 +08:00
|
|
|
"' ";
|
|
|
|
|
// lib:zlib
|
|
|
|
|
$zlib = $this->builder->getLib('zlib');
|
|
|
|
|
if ($zlib instanceof LinuxLibraryBase) {
|
|
|
|
|
$extra = 'zlib';
|
|
|
|
|
$ex_lib = trim($zlib->getStaticLibFiles() . ' ' . $ex_lib);
|
|
|
|
|
$zlib_extra =
|
|
|
|
|
'--with-zlib-include=' . BUILD_INCLUDE_PATH . ' ' .
|
|
|
|
|
'--with-zlib-lib=' . BUILD_LIB_PATH . ' ';
|
|
|
|
|
} else {
|
|
|
|
|
$zlib_extra = '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$ex_lib = trim($ex_lib);
|
|
|
|
|
|
2023-08-20 19:51:45 +08:00
|
|
|
$clang_postfix = SystemUtil::getCCType($this->builder->getOption('cc')) === 'clang' ? '-clang' : '';
|
2023-03-21 01:51:52 +08:00
|
|
|
|
2023-03-26 22:27:51 +08:00
|
|
|
shell()->cd($this->source_dir)
|
|
|
|
|
->exec(
|
|
|
|
|
"{$this->builder->configure_env} {$env} ./Configure no-shared {$extra} " .
|
|
|
|
|
'--prefix=/ ' .
|
2023-04-08 18:45:37 +08:00
|
|
|
'--libdir=lib ' .
|
|
|
|
|
'-static ' .
|
2023-03-26 22:27:51 +08:00
|
|
|
"{$zlib_extra}" .
|
|
|
|
|
'no-legacy ' .
|
2023-08-20 19:51:45 +08:00
|
|
|
"linux-{$this->builder->getOption('arch')}{$clang_postfix}"
|
2023-03-26 22:27:51 +08:00
|
|
|
)
|
|
|
|
|
->exec('make clean')
|
|
|
|
|
->exec("make -j{$this->builder->concurrency} CNF_EX_LIBS=\"{$ex_lib}\"")
|
|
|
|
|
->exec("make install_sw DESTDIR={$destdir}");
|
2023-04-29 18:59:47 +08:00
|
|
|
$this->patchPkgconfPrefix(['libssl.pc', 'openssl.pc', 'libcrypto.pc']);
|
2023-03-21 01:51:52 +08:00
|
|
|
}
|
|
|
|
|
}
|