Add liburing

This commit is contained in:
crazywhalecc 2026-02-06 11:54:15 +08:00
parent 4cfd8f4ca3
commit 127697b814
No known key found for this signature in database
GPG Key ID: 1F4BDD59391F2680
2 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,19 @@
liburing:
type: library
artifact:
source:
type: ghtar
repo: axboe/liburing
prefer-stable: true
metadata:
license-files: [COPYING]
license: LGPL-2.1-or-later
headers@linux:
- liburing/
- liburing.h
pkg-configs:
- liburing
- liburing-ffi
static-libs@linux:
- liburing.a
- liburing-ffi.a

View File

@ -0,0 +1,61 @@
<?php
declare(strict_types=1);
namespace Package\Library;
use StaticPHP\Attribute\Package\BuildFor;
use StaticPHP\Attribute\Package\Library;
use StaticPHP\Attribute\Package\PatchBeforeBuild;
use StaticPHP\Attribute\PatchDescription;
use StaticPHP\Package\LibraryPackage;
use StaticPHP\Runtime\Executor\UnixAutoconfExecutor;
use StaticPHP\Runtime\SystemTarget;
use StaticPHP\Toolchain\GccNativeToolchain;
use StaticPHP\Toolchain\Interface\ToolchainInterface;
use StaticPHP\Util\FileSystem;
use StaticPHP\Util\System\LinuxUtil;
#[Library('liburing')]
class liburing extends LibraryPackage
{
#[PatchBeforeBuild]
#[PatchDescription('Fix realpath usage for musl-based distributions')]
public function patchBeforeBuild(): bool
{
spc_skip_if(SystemTarget::getTargetOS() !== 'Linux', 'This patch is only for Linux systems.');
if (LinuxUtil::isMuslDist()) {
FileSystem::replaceFileStr("{$this->getSourceDir()}/configure", 'realpath -s', 'realpath');
return true;
}
return false;
}
#[BuildFor('Linux')]
public function buildLinux(ToolchainInterface $toolchain): void
{
$use_libc = !$toolchain instanceof GccNativeToolchain || version_compare(SystemTarget::getLibcVersion(), '2.30', '>=');
$make = UnixAutoconfExecutor::create($this);
if ($use_libc) {
$make->appendEnv([
'CFLAGS' => '-D_GNU_SOURCE',
]);
}
$make
->removeConfigureArgs(
'--disable-shared',
'--enable-static',
'--with-pic',
'--enable-pic',
)
->addConfigureArgs(
$use_libc ? '--use-libc' : '',
)
->configure()
->make('library ENABLE_SHARED=0', 'install ENABLE_SHARED=0', with_clean: false);
$this->patchPkgconfPrefix();
}
}