mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-10 02:15:36 +08:00
Add libedit package build
This commit is contained in:
37
src/Package/Library/libedit.php
Normal file
37
src/Package/Library/libedit.php
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Package\Library;
|
||||||
|
|
||||||
|
use StaticPHP\Attribute\Package\BeforeStage;
|
||||||
|
use StaticPHP\Attribute\Package\BuildFor;
|
||||||
|
use StaticPHP\Attribute\Package\Library;
|
||||||
|
use StaticPHP\Package\LibraryPackage;
|
||||||
|
use StaticPHP\Runtime\Executor\UnixAutoconfExecutor;
|
||||||
|
use StaticPHP\Util\FileSystem;
|
||||||
|
|
||||||
|
#[Library('libedit')]
|
||||||
|
class libedit extends LibraryPackage
|
||||||
|
{
|
||||||
|
#[BeforeStage('libedit', 'build')]
|
||||||
|
public function patchBeforeBuild(): void
|
||||||
|
{
|
||||||
|
FileSystem::replaceFileRegex(
|
||||||
|
"{$this->getSourceDir()}/src/sys.h",
|
||||||
|
'|//#define\s+strl|',
|
||||||
|
'#define strl'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[BuildFor('Darwin')]
|
||||||
|
#[BuildFor('Linux')]
|
||||||
|
public function build(): void
|
||||||
|
{
|
||||||
|
UnixAutoconfExecutor::create($this)
|
||||||
|
->appendEnv(['CFLAGS' => '-D__STDC_ISO_10646__=201103L'])
|
||||||
|
->configure()
|
||||||
|
->make();
|
||||||
|
$this->patchPkgconfPrefix(['libedit.pc']);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user