2010-03-25 17:46:16 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010 Jo-Philipp Wich <xm@subsignal.org>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=uhttpd
|
2011-01-28 21:50:33 +02:00
|
|
|
PKG_RELEASE:=22
|
2010-03-25 17:46:16 +02:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
2010-07-28 00:19:28 +03:00
|
|
|
PKG_BUILD_DEPENDS := libcyassl liblua
|
2010-03-25 17:46:16 +02:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/uhttpd/default
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2011-03-12 06:47:02 +02:00
|
|
|
SUBMENU:=Web Servers/Proxies
|
2010-03-25 17:46:16 +02:00
|
|
|
TITLE:=uHTTPd - tiny, single threaded HTTP server
|
2010-09-30 13:48:37 +03:00
|
|
|
MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
|
2010-03-25 17:46:16 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd
|
|
|
|
$(Package/uhttpd/default)
|
|
|
|
MENU:=1
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd/description
|
|
|
|
uHTTPd is a tiny single threaded HTTP server with TLS, CGI and Lua
|
|
|
|
support. It is intended as a drop-in replacement for the Busybox
|
|
|
|
HTTP daemon.
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-tls
|
|
|
|
$(Package/uhttpd/default)
|
|
|
|
TITLE+= (TLS plugin)
|
|
|
|
DEPENDS:=uhttpd +libcyassl
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-tls/description
|
|
|
|
The TLS plugin adds HTTPS support to uHTTPd.
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-lua
|
|
|
|
$(Package/uhttpd/default)
|
|
|
|
TITLE+= (Lua plugin)
|
|
|
|
DEPENDS:=uhttpd +liblua
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-lua/description
|
|
|
|
The Lua plugin adds a CGI-like Lua runtime interface to uHTTPd.
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
# hack to use CyASSL headers
|
|
|
|
TARGET_CFLAGS += -I$(firstword $(wildcard $(BUILD_DIR)/cyassl-*/include))
|
2010-03-28 05:35:45 +03:00
|
|
|
TARGET_LDFLAGS += -lm
|
2010-03-25 17:46:16 +02:00
|
|
|
MAKE_VARS += FPIC="$(FPIC)"
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd/conffiles
|
|
|
|
/etc/config/uhttpd
|
2010-10-05 22:34:22 +03:00
|
|
|
/etc/uhttpd.crt
|
|
|
|
/etc/uhttpd.key
|
2010-03-25 17:46:16 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd/install
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/uhttpd.init $(1)/etc/init.d/uhttpd
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
|
|
$(INSTALL_CONF) ./files/uhttpd.config $(1)/etc/config/uhttpd
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uhttpd $(1)/usr/sbin/uhttpd
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-tls/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uhttpd_tls.so $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-lua/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uhttpd_lua.so $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,uhttpd))
|
|
|
|
$(eval $(call BuildPackage,uhttpd-mod-tls))
|
|
|
|
$(eval $(call BuildPackage,uhttpd-mod-lua))
|