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