51f13e1583ef97a14db700abfba596c81ddbf359
[packages.git] / net / hiawatha / Makefile
1 #
2 # Copyright (C) 2006-2010 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:=hiawatha
11 PKG_VERSION:=7.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.hiawatha-webserver.org/files/
16 PKG_MD5SUM:=876111ba94b183745b90ca27d4f2b0ed
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/hiawatha
21   CATEGORY:=Network
22   SECTION:=net
23   SUBMENU:=Web
24   TITLE:=A very lightweight web server
25   URL:=http://www.hiawatha-webserver.org/
26   DEPENDS:=+libpthread
27 endef
28
29 define Package/hiawatha/description
30   Hiawatha is a webserver for Unix.
31 endef
32
33 CONFIGURE_ARGS+= \
34         --disable-cache \
35         --disable-monitor \
36         --disable-ssl \
37         --disable-xslt
38
39 CONFIGURE_VARS+= \
40         ac_cv_file__dev_urandom=yes \
41         webrootdir=/www
42
43 define Package/hiawatha/conffiles
44 /etc/hiawatha/hiawatha.conf
45 /etc/hiawatha/mimetype.conf
46 endef
47
48 define Package/hiawatha/install
49         $(INSTALL_DIR) $(1)/usr/sbin
50         $(INSTALL_BIN) $(PKG_BUILD_DIR)/hiawatha $(1)/usr/sbin/
51         $(INSTALL_DIR) $(1)/etc/hiawatha
52         $(INSTALL_CONF) $(PKG_BUILD_DIR)/etc/hiawatha/{hiawatha,mimetype}.conf $(1)/etc/hiawatha/
53 endef
54
55 $(eval $(call BuildPackage,hiawatha))