[packages] libdlna: fix build failure introduced by [21056], restore fix from [12678...
[openwrt/svn-archive/archive.git] / net / spawn-fcgi / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=spawn-fcgi
11 PKG_VERSION:=1.6.3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://www.lighttpd.net/download/
16 PKG_MD5SUM:=787ed2f88d2204bf1fe4fbd6e509d1d7
17
18 PKG_INSTALL = 1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/spawn-fcgi
23 SUBMENU:=Web
24 SECTION:=net
25 CATEGORY:=Network
26 TITLE:=Tool to spawn fastcgi applications
27 URL:=http://redmine.lighttpd.net/projects/spawn-fcgi
28 endef
29
30 define Package/spawn-fcgi/description
31 spawn-fcgi is used to spawn fastcgi applications
32 endef
33
34 define Package/spawn-fcgi/install
35 $(INSTALL_DIR) $(1)/usr/bin
36 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/spawn-fcgi $(1)/usr/bin/
37 endef
38
39 $(eval $(call BuildPackage,spawn-fcgi))