Files
static-php-cli/src/SPC/builder/unix/library/libde265.php

23 lines
453 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace SPC\builder\unix\library;
2025-06-09 09:24:31 +08:00
use SPC\util\executor\UnixCMakeExecutor;
trait libde265
{
protected function build(): void
{
UnixCMakeExecutor::create($this)
2026-03-18 23:26:57 +07:00
->addConfigureArgs(
'-DENABLE_SDL=OFF',
'-DENABLE_DECODER=OFF',
'-DHAVE_NEON=OFF',
2026-03-18 23:26:57 +07:00
)
->build();
$this->patchPkgconfPrefix(['libde265.pc']);
}
}