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