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.

109 lines
3.0 KiB

  1. #
  2. # Copyright (C) 2014-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. PKG_NAME:=libwebsockets
  9. PKG_VERSION:=4.2.1
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  13. PKG_SOURCE_URL:=https://codeload.github.com/warmcat/libwebsockets/tar.gz/v$(PKG_VERSION)?
  14. PKG_HASH:=842da21f73ccba2be59e680de10a8cce7928313048750eb6ad73b6fa50763c51
  15. PKG_SOURCE_VERSION:=v$(PKG_VERSION)
  16. PKG_LICENSE:=MIT
  17. PKG_LICENSE_FILES:=LICENSE
  18. PKG_BUILD_DEPENDS:=libubox
  19. CMAKE_INSTALL:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/cmake.mk
  22. CMAKE_OPTIONS += -DLWS_IPV6=$(if $(CONFIG_IPV6),ON,OFF)
  23. CMAKE_OPTIONS += -DISABLE_WERROR=ON
  24. CMAKE_OPTIONS += -DCMAKE_BUILD_TYPE=Release
  25. CMAKE_OPTIONS += -DLWS_WITH_ULOOP=ON
  26. # turn off all test apps
  27. CMAKE_OPTIONS += -DLWS_WITHOUT_TESTAPPS=ON
  28. CMAKE_OPTIONS += -DLWS_WITHOUT_TEST_SERVER=ON
  29. CMAKE_OPTIONS += -DLWS_WITHOUT_TEST_SERVER_EXTPOLL=ON
  30. CMAKE_OPTIONS += -DLWS_WITHOUT_TEST_PING=ON
  31. CMAKE_OPTIONS += -DLWS_WITHOUT_TEST_CLIENT=ON
  32. define Package/libwebsockets/Default
  33. SECTION:=libs
  34. CATEGORY:=Libraries
  35. TITLE:=libwebsockets
  36. DEPENDS:=+zlib +libcap
  37. URL:=https://libwebsockets.org
  38. MAINTAINER:=Karl Palsson <karlp@etactica.com>
  39. PROVIDES:= libwebsockets
  40. endef
  41. define Package/libwebsockets-openssl
  42. $(call Package/libwebsockets/Default)
  43. TITLE += (OpenSSL)
  44. DEPENDS += +libopenssl
  45. VARIANT:=openssl
  46. endef
  47. define Package/libwebsockets-mbedtls
  48. $(call Package/$(PKG_NAME)/Default)
  49. TITLE += (mbedTLS)
  50. DEPENDS += +libmbedtls
  51. VARIANT:=mbedtls
  52. endef
  53. define Package/libwebsockets-full
  54. $(call Package/libwebsockets/Default)
  55. TITLE += (Full - OpenSSL, libuv, plugins, CGI)
  56. DEPENDS += +libopenssl +libuv
  57. VARIANT:=full
  58. endef
  59. ifeq ($(BUILD_VARIANT),openssl)
  60. CMAKE_OPTIONS += -DLWS_OPENSSL_CLIENT_CERTS=/etc/ssl/certs
  61. CMAKE_OPTIONS += -DLWS_WITH_SSL=ON
  62. endif
  63. ifeq ($(BUILD_VARIANT),mbedtls)
  64. CMAKE_OPTIONS += -DLWS_WITH_MBEDTLS=1
  65. endif
  66. ifeq ($(BUILD_VARIANT),full)
  67. CMAKE_OPTIONS += -DLWS_OPENSSL_CLIENT_CERTS=/etc/ssl/certs
  68. CMAKE_OPTIONS += -DLWS_WITH_SSL=ON
  69. CMAKE_OPTIONS += -DLWS_WITH_LIBUV=ON
  70. CMAKE_OPTIONS += -DLWS_WITH_PLUGINS=ON
  71. CMAKE_OPTIONS += -DLWS_WITH_SERVER_STATUS=ON
  72. CMAKE_OPTIONS += -DLWS_WITH_ACCESS_LOG=ON
  73. CMAKE_OPTIONS += -DLWS_WITH_CGI=ON
  74. CMAKE_OPTIONS += -DLWS_UNIX_SOCK=ON
  75. endif
  76. define Package/libwebsockets/install
  77. $(INSTALL_DIR) $(1)/usr/lib
  78. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libwebsockets.so* $(1)/usr/lib/
  79. endef
  80. Package/libwebsockets-mbedtls/install = $(Package/libwebsockets/install)
  81. Package/libwebsockets-openssl/install = $(Package/libwebsockets/install)
  82. define Package/libwebsockets-full/install
  83. $(call Package/libwebsockets/install,$(1))
  84. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libwebsockets-evlib_uv.so* $(1)/usr/lib
  85. endef
  86. $(eval $(call BuildPackage,libwebsockets-openssl))
  87. $(eval $(call BuildPackage,libwebsockets-mbedtls))
  88. $(eval $(call BuildPackage,libwebsockets-full))