2018-05-27 07:49:53 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PECL_NAME:=krb5
|
|
|
|
PECL_LONGNAME:=Bindings for the Kerberos library
|
|
|
|
|
2023-05-20 00:38:49 +08:00
|
|
|
PKG_VERSION:=1.1.5
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_HASH:=2798e57ad231aa3467f09460e3e69169e04c88bd82972d8e86a6641e4ddc9d3d
|
2018-05-27 07:49:53 +08:00
|
|
|
|
2021-12-09 15:11:10 +08:00
|
|
|
PKG_NAME:=php8-pecl-krb5
|
2018-05-27 07:49:53 +08:00
|
|
|
PKG_SOURCE:=$(PECL_NAME)-$(PKG_VERSION).tgz
|
2024-02-21 00:38:25 +08:00
|
|
|
PKG_SOURCE_URL:=https://pecl.php.net/get/
|
2018-05-27 07:49:53 +08:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
|
|
|
|
|
2019-09-09 05:09:09 +08:00
|
|
|
PKG_LICENSE:=MIT
|
2018-05-27 07:49:53 +08:00
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
|
2021-12-09 15:11:10 +08:00
|
|
|
PKG_BUILD_DEPENDS:=php8
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/pecl-php8/$(PECL_NAME)-$(PKG_VERSION)
|
2018-05-27 07:49:53 +08:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2021-12-09 15:11:10 +08:00
|
|
|
include ../php8/pecl.mk
|
2018-05-27 07:49:53 +08:00
|
|
|
|
2019-12-01 04:50:10 +08:00
|
|
|
CONFIGURE_ARGS+= \
|
|
|
|
--with-krb5=shared,"$(STAGING_DIR)/usr" \
|
|
|
|
--with-krb5config=$(STAGING_DIR)/usr/bin/krb5-config
|
2018-05-27 07:49:53 +08:00
|
|
|
|
2021-12-09 15:11:10 +08:00
|
|
|
$(eval $(call PHP8PECLPackage,krb5,$(PECL_LONGNAME),+krb5-libs,30))
|
2018-05-27 07:49:53 +08:00
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|