[packages] appweb: not ported to avr32 (yet)
[openwrt/svn-archive/archive.git] / net / appweb / Makefile
1 #
2 # Makefile for the Appweb Web Server
3 #
4 # Copyright (C) 2009 Embedthis Software
5 #
6 # This software is licensed under the GPLv2. Commercial and other licenses
7 # are available from http://www.embedthis.com.
8 #
9 # $Id$
10
11 include $(TOPDIR)/rules.mk
12
13 PKG_NAME:=appweb
14 PKG_RELEASE:=1
15
16 #
17 # Build 3.0B.3
18 #
19 PKG_SOURCE_URL:=http://www.appwebserver.org/software/
20 PKG_VERSION:=3.0B.2-3
21 PKG_MD5SUM:=b54a99d388a5588a9af33aa1c6354e06
22 PKG_SOURCE:=$(PKG_NAME)-src-$(PKG_VERSION).tar.gz
23 #
24 # Build the latest snapshot from the default trunk
25 #
26 # PKG_SOURCE:=tip.tar.gz
27 # PKG_SOURCE_URL:= http://hg.embedthis.com/appweb/archive/
28 # PKG_VERSION:=default
29 # PKG_MD5SUM:=
30
31 include $(INCLUDE_DIR)/package.mk
32
33 CONFIGURE_ARGS += -q --defaults=release --shared --tune=size --without-php \
34 --without-ssl --disable-angel --disable-samples --disable-access-log \
35 --disable-complete-native --disable-complete-cross --webdir=/www \
36 --logdir=/var/log --port=8000 --sslPort=8443 --config=flat
37
38 define Package/appweb
39 SECTION:=net
40 CATEGORY:=Network
41 TITLE:=Appweb Web Server
42 VERSION:=$(PKG_VERSION)
43 URL:=http://www.appwebserver.org/
44 DEPENDS:=@!avr32
45 endef
46
47 define Package/appweb/description
48 Appweb is a powerful, compact embedded web server designed for dynamic web
49 applications.
50 endef
51
52 define Build/Prepare
53 tar xzf "$(DL_DIR)/$(PKG_SOURCE)" --strip-components 1 -C "$(PKG_BUILD_DIR)"
54 endef
55
56 define Build/Configure
57 $(call Build/Configure/Default)
58 endef
59
60 define Build/Compile
61 $(MAKE) -C $(PKG_BUILD_DIR) $(TARGET_CONFIGURE_OPTS)
62 endef
63
64 define Package/appweb/install
65 ( cd $(PKG_BUILD_DIR) ; $(PKG_BUILD_DIR)/build/bin/makeInstall \
66 --root=$(1) --install --with-openwrt=1 binary )
67 rm -rf $(1)/var
68 endef
69
70 $(eval $(call BuildPackage,appweb))
71