pecl.mk 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. define Package/php7-pecl/Default
  6. SUBMENU:=PHP
  7. SECTION:=lang
  8. CATEGORY:=Languages
  9. URL:=http://pecl.php.net/
  10. DEPENDS:=php7
  11. endef
  12. define Build/Prepare
  13. $(Build/Prepare/Default)
  14. ( cd $(PKG_BUILD_DIR); $(STAGING_DIR)/usr/bin/phpize7 )
  15. endef
  16. CONFIGURE_VARS+= \
  17. ac_cv_c_bigendian_php=$(if $(CONFIG_BIG_ENDIAN),yes,no)
  18. CONFIGURE_ARGS+= \
  19. --with-php-config=$(STAGING_DIR)/usr/bin/php7-config
  20. define PECLPackage
  21. define Package/php7-pecl-$(1)
  22. $(call Package/php7-pecl/Default)
  23. TITLE:=$(2)
  24. ifneq ($(3),)
  25. DEPENDS+=$(3)
  26. endif
  27. endef
  28. define Package/php7-pecl-$(1)/install
  29. $(INSTALL_DIR) $$(1)/usr/lib/php
  30. $(INSTALL_BIN) $(PKG_BUILD_DIR)/modules/$(subst -,_,$(1)).so $$(1)/usr/lib/php/
  31. $(INSTALL_DIR) $$(1)/etc/php7
  32. ifeq ($(5),zend)
  33. echo "zend_extension=/usr/lib/php/$(subst -,_,$(1)).so" > $$(1)/etc/php7/$(if $(4),$(4),20)_$(subst -,_,$(1)).ini
  34. else
  35. echo "extension=$(subst -,_,$(1)).so" > $$(1)/etc/php7/$(if $(4),$(4),20)_$(subst -,_,$(1)).ini
  36. endif
  37. endef
  38. endef