Files
static-php-cli/src/SPC/builder/unix/library/libde265.php
henderkes 823fe96942 attempt
2026-03-18 23:26:57 +07:00

22 lines
417 B
PHP

<?php
declare(strict_types=1);
namespace SPC\builder\unix\library;
use SPC\util\executor\UnixCMakeExecutor;
trait libde265
{
protected function build(): void
{
UnixCMakeExecutor::create($this)
->addConfigureArgs(
'-DENABLE_SDL=OFF',
'-DENABLE_DECODER=OFF'
)
->build();
$this->patchPkgconfPrefix(['libde265.pc']);
}
}