You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.0 KiB

  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_ARGS+= \
  17. --with-php-config=$(STAGING_DIR)/usr/bin/php7-config
  18. define PECLPackage
  19. define Package/php7-pecl-$(1)
  20. $(call Package/php7-pecl/Default)
  21. TITLE:=$(2)
  22. ifneq ($(3),)
  23. DEPENDS+=$(3)
  24. endif
  25. endef
  26. define Package/php7-pecl-$(1)/install
  27. $(INSTALL_DIR) $$(1)/usr/lib/php
  28. $(INSTALL_BIN) $(PKG_BUILD_DIR)/modules/$(subst -,_,$(1)).so $$(1)/usr/lib/php/
  29. $(INSTALL_DIR) $$(1)/etc/php7
  30. ifeq ($(5),zend)
  31. echo "zend_extension=/usr/lib/php/$(subst -,_,$(1)).so" > $$(1)/etc/php7/$(if $(4),$(4),20)_$(subst -,_,$(1)).ini
  32. else
  33. echo "extension=$(subst -,_,$(1)).so" > $$(1)/etc/php7/$(if $(4),$(4),20)_$(subst -,_,$(1)).ini
  34. endif
  35. endef
  36. endef