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.

52 lines
1.7 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.18
  12. PKG_RELEASE:=2
  13. # This package is building a static library, used by seafile-server
  14. # Every time the built library changes (metadata changes are exempt),
  15. # seafile-server needs a release bump to ensure the update is used.
  16. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  17. PKG_SOURCE_URL:=https://codeload.github.com/criticalstack/libevhtp/tar.gz/$(PKG_VERSION)?
  18. PKG_HASH:=316ede0d672be3ae6fe489d4ac1c8c53a1db7d4fe05edaff3c7c853933e02795
  19. PKG_MAINTAINER:=Eneas U de Queiroz <cote2004-github@yahoo.com>
  20. PKG_LICENSE:=BSD-3-Clause
  21. PKG_LICENSE_FILES:=LICENSE
  22. CMAKE_INSTALL:=1
  23. include $(INCLUDE_DIR)/package.mk
  24. include $(INCLUDE_DIR)/cmake.mk
  25. define Package/libevhtp
  26. SECTION:=libs
  27. CATEGORY:=Libraries
  28. TITLE:=A more flexible replacement for libevent's httpd API
  29. URL:=https://github.com/criticalstack/libevhtp
  30. DEPENDS:=+libevent2 +libevent2-openssl +libevent2-pthreads +oniguruma
  31. endef
  32. define Package/libevhtp/description
  33. Libevhtp was created as a replacement API for Libevent's current HTTP API.
  34. The reality of libevent's http interface is that it was created as a JIT server,
  35. meaning the developer never thought of it being used for creating a full-fledged HTTP service.
  36. endef
  37. define Build/InstallDev
  38. $(call Build/InstallDev/cmake,$(1))
  39. $(SED) 's,^\(include\|lib\)dir=,\0$(STAGING_DIR)/usr/\1,' "$(1)/usr/lib/pkgconfig/evhtp.pc"
  40. endef
  41. $(eval $(call BuildPackage,libevhtp))