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.3 KiB

  1. #
  2. # Copyright (C) 2007-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. # NOTE: please DO NOT update this package without the maintainer's consent.
  8. # See https://github.com/haiwen/seafile/issues/1119
  9. include $(TOPDIR)/rules.mk
  10. PKG_NAME:=libevhtp
  11. PKG_VERSION:=1.2.0
  12. PKG_RELEASE:=2
  13. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  14. PKG_SOURCE_URL:=https://codeload.github.com/criticalstack/libevhtp/tar.gz/$(PKG_VERSION)?
  15. PKG_HASH:=d8d98072693f5f68ccd74d327dedfa2f6add4446ac2799689c2f58dd480aa301
  16. PKG_MAINTAINER:=
  17. PKG_LICENSE:=BSD-3-Clause
  18. PKG_LICENSE_FILES:=LICENSE
  19. CMAKE_INSTALL:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/cmake.mk
  22. define Package/libevhtp
  23. SECTION:=libs
  24. CATEGORY:=Libraries
  25. TITLE:=A more flexible replacement for libevent's httpd API
  26. URL:=https://github.com/criticalstack/libevhtp
  27. DEPENDS:=+libevent2 +libevent2-openssl +libevent2-pthreads
  28. endef
  29. define Package/libevhtp/description
  30. Libevhtp was created as a replacement API for Libevent's current HTTP API.
  31. The reality of libevent's http interface is that it was created as a JIT server,
  32. meaning the developer never thought of it being used for creating a full-fledged HTTP service.
  33. endef
  34. $(eval $(call BuildPackage,libevhtp))