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.

40 lines
1.1 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=gatling
  3. PKG_VERSION:=0.16
  4. PKG_RELEASE:=1
  5. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  6. PKG_SOURCE_URL:=https://www.fefe.de/gatling/
  7. PKG_HASH:=5f96438ee201d7f1f6c2e0849ff273b196bdc7493f29a719ce8ed08c8be6365b
  8. PKG_BUILD_DEPENDS:=px5g-mbedtls libowfat
  9. PKG_MAINTAINER:=Martin Hübner <martin.hubner@web.de>
  10. PKG_LICENSE:=GPL-2.0-only
  11. PKG_LICENSE_FILES:=LICENSE
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/gatling
  14. SECTION:=net
  15. CATEGORY:=Network
  16. SUBMENU:=Web Servers/Proxies
  17. TITLE:=gatling - a high performance web server
  18. URL:=https://www.fefe.de/gatling/
  19. DEPENDS:=+zlib +libcap +libopenssl
  20. endef
  21. define Package/gatling/description
  22. gatling - a high performance web server
  23. with a a rather small binary size but a decent set of extra features
  24. like ftp, basic htaccess and basic DoS-Protection.
  25. Gatling is particularly good in situations with very high load.
  26. endef
  27. define Package/gatling/install
  28. $(INSTALL_DIR) $(1)/usr/bin
  29. $(INSTALL_BIN) $(PKG_BUILD_DIR)/gatling $(1)/usr/bin/
  30. endef
  31. $(eval $(call BuildPackage,gatling))