blob: 4121307ae7337bc9f8cd9725120c89e5c4e182d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Contributor: Andy Postnikov <apostnikov@gmail.com>
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
pkgname=php7-pecl-xhprof
_pkgreal=xhprof
pkgver=2.2.0
pkgrel=0
pkgdesc="A Hierarchical Profiler for PHP"
url="https://pecl.php.net/package/xhprof"
arch="all"
license="Apache-2.0"
depends="php7-ctype"
makedepends="php7-dev re2c"
subpackages="$pkgname-assets::noarch"
source="$pkgname-$pkgver.tar.gz::https://pecl.php.net/get/$_pkgreal-$pkgver.tgz"
builddir="$srcdir/$_pkgreal-$pkgver"
provides="php7-xhprof=$pkgver-r$pkgrel" # for backward compatibility
replaces="php7-xhprof" # for backward compatibility
build() {
cd "$builddir"/extension
phpize7
./configure --with-php-config=php-config7
make
}
check() {
cd "$builddir"/extension
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test
}
package() {
cd "$builddir"/extension
make INSTALL_ROOT="$pkgdir"/ install
local confdir="$pkgdir/etc/php7/conf.d"
install -d "$confdir"
cat > "$confdir"/$_pkgreal.ini <<-EOF
extension=$_pkgreal.so
xhprof.output_dir=/tmp
EOF
local installdir="$pkgdir"/usr/share/php7/xhprof
install -d "$installdir"
cp -R "$builddir"/xhprof_lib "$installdir"
}
assets() {
pkgdesc="A Hierarchical Profiler for PHP (UI assets)"
depends="$pkgname graphviz ghostscript-fonts"
provides="php7-xhprof-assets=$pkgver-r$pkgrel" # for backward compatibility
replaces="php7-xhprof-assets" # for backward compatibility
local installdir="$subpkgdir"/usr/share/php7/xhprof
install -d "$installdir"
cp -R "$builddir"/xhprof_html "$installdir"
cp -R "$builddir"/examples "$installdir"
}
sha512sums="628fe010f1043843d56b6b5b04702fea90973303605f36d8ba7fbc4d910acf8d5c965eab86ce31c1b497fb8b795d18c82a0b17df26849f2f1ec990262d481bab php7-pecl-xhprof-2.2.0.tar.gz"
|