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.

42 lines
1.0 KiB

  1. #
  2. # Copyright (C) 2006-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:=spawn-fcgi
  9. PKG_VERSION:=1.6.4
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=http://download.lighttpd.net/spawn-fcgi/releases-1.6.x/
  13. PKG_HASH:=423b0c317e0084773b483985cc21930c4b8dfcb411f7353d6ee6fc41d9cb9d45
  14. PKG_LICENSE:=BSD-3c
  15. PKG_LICENSE_FILES:=COPYING
  16. PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/spawn-fcgi
  19. SUBMENU:=Web Servers/Proxies
  20. SECTION:=net
  21. CATEGORY:=Network
  22. TITLE:=Tool to spawn fastcgi applications
  23. URL:=http://redmine.lighttpd.net/projects/spawn-fcgi
  24. endef
  25. define Package/spawn-fcgi/description
  26. spawn-fcgi is used to spawn fastcgi applications
  27. endef
  28. define Package/spawn-fcgi/install
  29. $(INSTALL_DIR) $(1)/usr/bin
  30. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/spawn-fcgi $(1)/usr/bin/
  31. endef
  32. $(eval $(call BuildPackage,spawn-fcgi))