mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
|
|
pkgname=php7-pecl-swoole
|
|
_pkgreal=swoole
|
|
pkgver=4.2.13
|
|
pkgrel=0
|
|
pkgdesc="Event-driven asynchronous and concurrent networking engine with high performance for PHP."
|
|
url="https://pecl.php.net/package/swoole"
|
|
arch="x86_64" # https://github.com/swoole/swoole-src/issues/2181
|
|
license="Apache-2.0"
|
|
depends="php7-openssl php7-sockets"
|
|
makedepends="php7-dev autoconf re2c openssl-dev nghttp2-dev"
|
|
source="https://pecl.php.net/get/$_pkgreal-$pkgver.tgz"
|
|
builddir="$srcdir"/$_pkgreal-$pkgver
|
|
subpackages="$pkgname-dev"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
phpize7
|
|
./configure --prefix=/usr \
|
|
--with-php-config=php-config7 \
|
|
--enable-openssl \
|
|
--enable-sockets \
|
|
--enable-http2
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
# needs extra services to test all suite
|
|
php7 -d extension="$builddir"/modules/swoole.so --ri swoole
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make INSTALL_ROOT="$pkgdir"/ install
|
|
install -d "$pkgdir"/etc/php7/conf.d
|
|
echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php7/conf.d/50_$_pkgreal.ini
|
|
}
|
|
|
|
sha512sums="f2438ce761766d20a24279a2d6f2094c718324585b1d396344f64e8a4facc1cc025a3afb2deff3b1accd5266763bdaa0a2b15e831ea4b9bdb107c83b0046636d swoole-4.2.13.tgz"
|