mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-04 07:15:38 +08:00
71 lines
2.4 KiB
PHP
71 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\unix\library;
|
|
|
|
use SPC\store\FileSystem;
|
|
use SPC\util\executor\UnixAutoconfExecutor;
|
|
use SPC\util\SPCTarget;
|
|
|
|
trait ncurses
|
|
{
|
|
public function patchBeforeBuild(): bool
|
|
{
|
|
// MKlib_gen.sh feeds preprocessor stdout through a sed/awk pipeline into lib_gen.c.
|
|
// zig-cc/clang leaks the "N warning(s) generated." summary onto stdout (not stderr),
|
|
// and that line ends up as invalid C in the generated source. Filter it out of the pipe.
|
|
FileSystem::replaceFileStr(
|
|
$this->source_dir . '/ncurses/base/MKlib_gen.sh',
|
|
'$preprocessor $TMP 2>/dev/null \\',
|
|
"\$preprocessor \$TMP 2>/dev/null \\\n| grep -v ' generated\\.\$' \\",
|
|
);
|
|
return true;
|
|
}
|
|
|
|
protected function build(): void
|
|
{
|
|
$filelist = FileSystem::scanDirFiles(BUILD_BIN_PATH, relative: true);
|
|
|
|
UnixAutoconfExecutor::create($this)
|
|
->appendEnv([
|
|
'CFLAGS' => '-std=c17 -w',
|
|
'LDFLAGS' => SPCTarget::isStatic() ? '-static' : '',
|
|
])
|
|
->configure(
|
|
'--enable-overwrite',
|
|
'--with-curses-h',
|
|
'--enable-pc-files',
|
|
'--enable-echo',
|
|
'--disable-widec',
|
|
'--with-normal',
|
|
'--with-ticlib',
|
|
'--without-tests',
|
|
'--without-dlsym',
|
|
'--without-debug',
|
|
'--enable-symlinks',
|
|
"--bindir={$this->getBinDir()}",
|
|
"--includedir={$this->getIncludeDir()}",
|
|
"--libdir={$this->getLibDir()}",
|
|
"--prefix={$this->getBuildRootPath()}",
|
|
)
|
|
->make();
|
|
$final = FileSystem::scanDirFiles(BUILD_BIN_PATH, relative: true);
|
|
// Remove the new files
|
|
$new_files = array_diff($final, $filelist ?: []);
|
|
foreach ($new_files as $file) {
|
|
@unlink(BUILD_BIN_PATH . '/' . $file);
|
|
}
|
|
|
|
shell()->cd(BUILD_ROOT_PATH)->exec('rm -rf share/terminfo');
|
|
shell()->cd(BUILD_ROOT_PATH)->exec('rm -rf lib/terminfo');
|
|
|
|
$pkgconf_list = ['form.pc', 'menu.pc', 'ncurses++.pc', 'ncurses.pc', 'panel.pc', 'tic.pc'];
|
|
$this->patchPkgconfPrefix($pkgconf_list);
|
|
|
|
foreach ($pkgconf_list as $pkgconf) {
|
|
FileSystem::replaceFileStr(BUILD_LIB_PATH . '/pkgconfig/' . $pkgconf, '-L' . BUILD_LIB_PATH, '-L${libdir}');
|
|
}
|
|
}
|
|
}
|