1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 19:55:26 +03:00
aports/community/php81-pecl-xhprof/APKBUILD
2022-12-14 15:34:28 +01:00

57 lines
1.7 KiB
Text

# Contributor: Andy Postnikov <apostnikov@gmail.com>
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
pkgname=php81-pecl-xhprof
_extname=xhprof
pkgver=2.3.9
pkgrel=0
pkgdesc="A Hierarchical Profiler for PHP 8.1 - PECL"
url="https://pecl.php.net/package/xhprof"
arch="all"
license="Apache-2.0"
depends="php81-common"
makedepends="php81-dev"
_assetsdepends="php81-ctype graphviz ghostscript-fonts"
subpackages="$pkgname-assets::noarch"
source="php-pecl-$_extname-$pkgver.tgz::https://pecl.php.net/get/$_extname-$pkgver.tgz"
builddir="$srcdir/$_extname-$pkgver/extension"
provides="php81-xhprof=$pkgver-r$pkgrel" # for backward compatibility
replaces="php81-xhprof" # for backward compatibility
build() {
phpize81
./configure --with-php-config=php-config81
make
}
check() {
[ $CARCH = s390x ] && rm -fr tests/xhprof_005.phpt # sleeping longer in CI
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 TESTS=--show-diff test
}
package() {
make INSTALL_ROOT="$pkgdir" install
local _confdir="$pkgdir"/etc/php81/conf.d
install -d $_confdir
cat > $_confdir/$_extname.ini <<-EOF
extension=$_extname
xhprof.output_dir=/tmp
EOF
}
assets() {
pkgdesc="A Hierarchical Profiler for PHP (UI assets)"
depends="$_assetsdepends"
provides="php81-xhprof-assets=$pkgver-r$pkgrel" # for backward compatibility
replaces="php81-xhprof-assets" # for backward compatibility
local _assetsdir="$subpkgdir"/usr/share/php81/xhprof
install -d $_assetsdir
cp -R "$builddir"/../xhprof_lib $_assetsdir
cp -R "$builddir"/../xhprof_html $_assetsdir
cp -R "$builddir"/../examples $_assetsdir
}
sha512sums="
38a2609d961d908c6a4b5d1ff2085ffdad4a5f7d277705c826ae19e215660802528d606c5ee052f2e65255a7a85b2a9cb9038f4785c730ec468fc76dc7bcf5de php-pecl-xhprof-2.3.9.tgz
"