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.

38 lines
927 B

  1. #
  2. # Copyright (C) 2012-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PECL_NAME:=libevent
  9. PECL_LONGNAME:=Libevent - event notification
  10. PKG_VERSION:=0.1.0
  11. PKG_RELEASE:=2
  12. PKG_MD5SUM:=e091371a9e714098a4c04a6e3daeb56a
  13. PKG_NAME:=php5-pecl-$(PECL_NAME)
  14. PKG_SOURCE:=$(PECL_NAME)-$(PKG_VERSION).tgz
  15. PKG_SOURCE_URL:=http://pecl.php.net/get/
  16. PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
  17. PKG_LICENSE:=PHPv3.01
  18. PKG_LICENSE_FILES:=
  19. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PECL_NAME)-$(PKG_VERSION)
  20. PKG_BUILD_PARALLEL:=1
  21. PKG_FIXUP:=autoreconf
  22. include $(INCLUDE_DIR)/package.mk
  23. include $(INCLUDE_DIR)/nls.mk
  24. include ../php5/pecl.mk
  25. CONFIGURE_ARGS+= --with-libevent=shared,"$(STAGING_DIR)/usr"
  26. $(eval $(call PECLPackage,$(PECL_NAME),$(PECL_LONGNAME),+libevent2 +php5-mod-sockets))
  27. $(eval $(call BuildPackage,$(PKG_NAME)))