blob: a2c050d6400b3856c3318fcc59f6a593c6099a53 (
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
|
# 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
"
|