Merge pull request #17303 from CarlosDerSeher/feature_bt_agent
[feed/packages.git] / lang / php8-pecl-redis / Makefile
1 #
2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
4 #
5
6 include $(TOPDIR)/rules.mk
7
8 PECL_NAME:=redis
9 PECL_LONGNAME:=PHP extension for interfacing with Redis
10
11 PKG_VERSION:=5.3.7
12 PKG_RELEASE:=1
13 PKG_HASH:=b958166ccda4f40bd17c6998f9e2239021ae644467cd8ad5c15def420aad65b0
14
15 PKG_NAME:=php8-pecl-redis
16 PKG_SOURCE:=$(PECL_NAME)-$(PKG_VERSION).tgz
17 PKG_SOURCE_URL:=http://pecl.php.net/get/
18
19 PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
20
21 PKG_LICENSE:=PHP-3.01
22 PKG_LICENSE_FILES:=COPYING
23
24 PKG_BUILD_DIR:=$(BUILD_DIR)/pecl-php8/$(PECL_NAME)-$(PKG_VERSION)
25 PKG_BUILD_PARALLEL:=1
26
27 include $(INCLUDE_DIR)/package.mk
28 include $(INCLUDE_DIR)/nls.mk
29 include ../php8/pecl.mk
30
31 CONFIGURE_ARGS+= \
32 --enable-redis \
33 --enable-redis-json \
34 --disable-redis-igbinary \
35 --disable-redis-lzf \
36 --disable-redis-msgpack
37
38 $(eval $(call PHP8PECLPackage,$(PECL_NAME),$(PECL_LONGNAME),+php8-mod-session,25))
39 $(eval $(call BuildPackage,$(PKG_NAME)))