21 lines
370 B
PHP
Raw Normal View History

2025-10-08 08:16:54 +02:00
<?php
declare(strict_types=1);
namespace SPC\builder\unix\library;
use SPC\util\executor\UnixAutoconfExecutor;
trait libedit
{
protected function build(): void
{
UnixAutoconfExecutor::create($this)
->configure(
'--with-curses'
)
->make();
$this->patchPkgconfPrefix(['libedit.pc']);
}
}