2025-07-18 14:04:55 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace SPC\builder\unix\library;
|
|
|
|
|
|
|
|
|
|
use SPC\exception\FileSystemException;
|
|
|
|
|
use SPC\exception\RuntimeException;
|
|
|
|
|
use SPC\store\FileSystem;
|
|
|
|
|
|
|
|
|
|
trait jbig
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @throws FileSystemException
|
|
|
|
|
*/
|
2025-07-19 17:56:54 +07:00
|
|
|
public function patchBeforeBuild(): bool
|
2025-07-18 14:04:55 +07:00
|
|
|
{
|
|
|
|
|
// Patch Makefile to add -fPIC flag for position-independent code
|
|
|
|
|
FileSystem::replaceFileStr($this->source_dir . '/Makefile', 'CFLAGS = -O2 -W -Wno-unused-result', 'CFLAGS = -O2 -W -Wno-unused-result -fPIC');
|
2025-07-19 17:56:54 +07:00
|
|
|
}
|
2025-07-18 14:04:55 +07:00
|
|
|
|
2025-07-19 17:56:54 +07:00
|
|
|
/**
|
|
|
|
|
* @throws RuntimeException
|
|
|
|
|
*/
|
|
|
|
|
protected function build(): void
|
|
|
|
|
{
|
2025-07-18 14:04:55 +07:00
|
|
|
// Build the library
|
|
|
|
|
shell()->cd($this->source_dir)->initializeEnv($this)
|
|
|
|
|
->exec("make -j{$this->builder->concurrency} {$this->builder->getEnvString()} lib")
|
|
|
|
|
->exec('cp libjbig/libjbig.a ' . BUILD_LIB_PATH)
|
|
|
|
|
->exec('cp libjbig/libjbig85.a ' . BUILD_LIB_PATH)
|
|
|
|
|
->exec('cp libjbig/jbig.h ' . BUILD_INCLUDE_PATH)
|
|
|
|
|
->exec('cp libjbig/jbig85.h ' . BUILD_INCLUDE_PATH)
|
|
|
|
|
->exec('cp libjbig/jbig_ar.h ' . BUILD_INCLUDE_PATH);
|
|
|
|
|
}
|
|
|
|
|
}
|