17 lines
325 B
PHP
Raw Normal View History

2023-05-12 09:47:43 +00:00
<?php
declare(strict_types=1);
namespace SPC\builder\unix\library;
2025-06-09 19:32:31 +08:00
use SPC\util\executor\UnixAutoconfExecutor;
2023-05-12 09:47:43 +00:00
trait libsodium
{
protected function build(): void
2023-05-12 09:47:43 +00:00
{
2025-06-09 19:32:31 +08:00
UnixAutoconfExecutor::create($this)->configure()->make();
$this->patchPkgconfPrefix(['libsodium.pc'], PKGCONF_PATCH_PREFIX);
2023-05-12 09:47:43 +00:00
}
}