php-redis: -> 5.3.7

This commit is contained in:
Tim Biermann 2023-09-09 21:53:57 +02:00
parent 169227c0bd
commit 86328d23cc
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3y0B86Uiw+lOq90fIvh4toEgtObEMlPVXbtULp3hTO+2e6tDutyxw+gD+1ib0rIXHsJe+mvigIkcVEOo/cEPhgA=
SHA256 (Pkgfile) = 410394cd8b2666213ecd95534e23ae6652ca629a28fff2d3693a80ecf999afdd
RWSagIOpLGJF35ToELwjCDdGhrVaRuugadCTP3S/+dkWpDLqfEC/EI9Yti3ZMzkAwW92Mnaqa4t0ZaibU0ZZ4NDowE0knXzj0gw=
SHA256 (Pkgfile) = 6a37573d111f1ef9133bfe8069c8d497e6bccfd44b17bfa033b22eeeaa76204a
SHA256 (.footprint) = 659383f9555ba6ecce269cdc4cd7e25d7cee56f341f2d65b15ed9d94e86fc535
SHA256 (php-redis-5.3.7.tar.gz) = 6f5cda93aac8c1c4bafa45255460292571fb2f029b0ac4a5a4dc66987a9529e6

View File

@ -7,17 +7,21 @@
name=php-redis
version=5.3.7
release=1
source=(https://github.com/phpredis/phpredis/archive/$version/$name-$version.tar.gz)
source=(https://github.com/phpredis/phpredis/archive/refs/tags/$version.tar.gz)
renames=($name-$version.tar.gz)
build() {
cd phpredis-$version
echo -e "; this extension requires igbinary to be activated as well\n;extension=redis" > "redis.ini"
phpize
./configure --prefix=/usr \
--enable-redis-igbinary \
--enable-redis-lzf \
--with-liblzf=/usr/lib/
make
make INSTALL_ROOT=$PKG/ install
install -vDm 644 redis.ini -t $PKG/etc/php/conf.d/
}