From 294117e84728c8d5cfacbdfe71d7bacedbba48d8 Mon Sep 17 00:00:00 2001 From: "W. Michael Petullo" Date: Sat, 26 May 2018 19:51:21 -0400 Subject: [PATCH] php7-pecl-mcrypt: add new package PHP 7.2 dropped support for the libmcrypt binding. The binding is now provided by PECL, and a number of applications still rely on this package. Signed-off-by: W. Michael Petullo --- lang/php7-pecl-mcrypt/Makefile | 37 ++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 lang/php7-pecl-mcrypt/Makefile diff --git a/lang/php7-pecl-mcrypt/Makefile b/lang/php7-pecl-mcrypt/Makefile new file mode 100644 index 000000000..042d5e9ce --- /dev/null +++ b/lang/php7-pecl-mcrypt/Makefile @@ -0,0 +1,37 @@ +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PECL_NAME:=mcrypt +PECL_LONGNAME:=Bindings for the libmcrypt library + +PKG_VERSION:=1.0.1 +PKG_RELEASE:=1 +PKG_HASH:=a3b0e5493b5cd209ab780ee54733667293d369e6b7052b4a7dab9dd0def46ac6 + +PKG_NAME:=php7-pecl-mcrypt +PKG_SOURCE:=$(PECL_NAME)-$(PKG_VERSION).tgz +PKG_SOURCE_URL:=http://pecl.php.net/get/ + +PKG_MAINTAINER:=W. Michael Petullo + +PKG_LICENSE:=PHPv3.01 +PKG_LICENSE_FILES:=LICENSE + +PKG_BUILD_DEPENDS:=php7 +PKG_BUILD_DIR:=$(BUILD_DIR)/pecl-php7/$(PECL_NAME)-$(PKG_VERSION) +PKG_BUILD_PARALLEL:=1 + +PKG_FIXUP:=autoreconf + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/nls.mk +include ../php7/pecl.mk + +CONFIGURE_ARGS+= --with-mcrypt=shared,"$(STAGING_DIR)/usr" + +$(eval $(call PECLPackage,mcrypt,$(PECL_LONGNAME),+libmcrypt +libltdl,30)) +$(eval $(call BuildPackage,$(PKG_NAME)))