mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 21:34:53 +08:00
* don't require libacl and attr - use --with-libs='libacl' if you build fpm with acl support * don't filter out libacl and libattr * suggest attr instead of requiring it * disable nls if libiconv is not built * suggest libiconv when using attr/libacl * wrong directive... * gettext (libintl) for acl/attr * remove suggestions and build acl and attr without nls --------- Co-authored-by: Marc Henderkes <m.henderkes@pc-college.de>
29 lines
869 B
PHP
29 lines
869 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\unix\library;
|
|
|
|
use SPC\exception\RuntimeException;
|
|
|
|
trait attr
|
|
{
|
|
/**
|
|
* @throws RuntimeException
|
|
*/
|
|
protected function build(): void
|
|
{
|
|
shell()->cd($this->source_dir)
|
|
->setEnv([
|
|
'CFLAGS' => trim('-I' . BUILD_INCLUDE_PATH . ' ' . $this->getLibExtraCFlags()),
|
|
'LDFLAGS' => trim('-L' . BUILD_LIB_PATH . ' ' . $this->getLibExtraLdFlags()),
|
|
'LIBS' => $this->getLibExtraLibs(),
|
|
])->execWithEnv('./autogen.sh')
|
|
->execWithEnv('./configure --prefix= --enable-static --disable-shared --disable-nls')
|
|
->execWithEnv("make -j {$this->builder->concurrency}")
|
|
->exec('make install DESTDIR=' . BUILD_ROOT_PATH);
|
|
|
|
$this->patchPkgconfPrefix(['libattr.pc'], PKGCONF_PATCH_PREFIX);
|
|
}
|
|
}
|