mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-17 05:05:14 +03:00
44 lines
1.3 KiB
Text
44 lines
1.3 KiB
Text
# Contributor: Fabio Ribeiro <fabiorphp@gmail.com>
|
|
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
|
|
pkgname=php8-pecl-redis
|
|
_extname=redis
|
|
pkgver=5.3.7
|
|
_pkgver=${pkgver/_rc/RC}
|
|
pkgrel=0
|
|
pkgdesc="PHP 8 extension for interfacing with Redis - PECL"
|
|
url="https://pecl.php.net/package/redis"
|
|
arch="all"
|
|
license="PHP-3.01"
|
|
depends="php8-pecl-igbinary php8-session"
|
|
makedepends="php8-dev lz4-dev zstd-dev"
|
|
source="php-pecl-$_extname-$_pkgver.tgz::https://pecl.php.net/get/$_extname-$_pkgver.tgz"
|
|
builddir="$srcdir/$_extname-$_pkgver"
|
|
provides="php8-redis=$pkgver-r$pkgrel" # for backward compatibility
|
|
replaces="php8-redis" # for backward compatibility
|
|
|
|
build() {
|
|
phpize8
|
|
./configure --prefix=/usr --with-php-config=php-config8 \
|
|
--enable-redis-igbinary \
|
|
--enable-redis-lz4 --with-liblz4 \
|
|
--enable-redis-lzf \
|
|
--enable-redis-zstd
|
|
make
|
|
}
|
|
|
|
check() {
|
|
# Need running redis server
|
|
php8 -d extension=modules/$_extname.so --ri $_extname
|
|
}
|
|
|
|
package() {
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
|
|
local _confdir="$pkgdir"/etc/php8/conf.d
|
|
mkdir -p $_confdir
|
|
echo "extension=$_extname" > $_confdir/20_$_extname.ini
|
|
}
|
|
|
|
sha512sums="
|
|
b945d5aa86d3f58e75094369b0f324e987202f104aca7d7b46ba23cfaed54d186bb66931e200dd16d2dbeea11732dd0311da4e3d7485c3b725027f7924652832 php-pecl-redis-5.3.7.tgz
|
|
"
|