Retain symlinks. $(INSTALL_*) copys the contens of a file, so if we want to keep
[packages.git] / libs / axtls / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=axtls
12 PKG_VERSION:=1.1.6
13 PKG_RELEASE:=2
14
15 PKG_SOURCE:=axTLS-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/axtls http://www.leroc.com.au/axTLS/
17 PKG_MD5SUM:=50e63d5fe002399e2ae63591908f7f5a
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/axTLS
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/libaxtls
24   SECTION:=libs
25   CATEGORY:=Libraries
26   TITLE:=Embedded client/server TLSv1 SSL library
27   URL:=http://sourceforge.net/projects/axtls
28 endef
29
30 define Package/axhttpd
31   SECTION:=net
32   CATEGORY:=Network
33   SUBMENU:=Web
34   DEPENDS:=+libaxtls
35   TITLE:=A small embedded web server using the axTLS library
36   URL:=http://www.axtls.co.nr/
37 endef
38
39 define Build/Configure
40         $(CP) ./files/config $(PKG_BUILD_DIR)/config/.config
41         $(MAKE) -C $(PKG_BUILD_DIR) oldconfig
42 endef
43
44 TARGET_CFLAGS += $(FPIC)
45
46 define Build/Compile
47         $(MAKE) -C $(PKG_BUILD_DIR) \
48                 CC="$(TARGET_CC)" \
49                 STRIP="/bin/true" \
50                 OPT_CFLAGS="$(TARGET_CFLAGS)" OPT_LDFLAGS="" \
51                 all
52         $(MAKE) -C $(PKG_BUILD_DIR) \
53                 PREFIX="$(PKG_INSTALL_DIR)/usr" \
54                 install
55 endef
56
57 define Build/InstallDev
58         mkdir -p $(1)/usr/include
59         $(CP) $(PKG_INSTALL_DIR)/usr/include/axTLS $(1)/usr/include/
60         mkdir -p $(1)/usr/lib
61         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libaxtls.{a,so*} $(1)/usr/lib/
62 endef
63
64 define Package/libaxtls/install
65         $(INSTALL_DIR) $(1)/usr/lib
66         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libaxtls.so.* $(1)/usr/lib/
67 endef
68
69 define Package/axhttpd/install
70         $(INSTALL_DIR) $(1)/usr/sbin
71         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/axhttpd $(1)/usr/sbin/
72 endef
73
74 $(eval $(call BuildPackage,libaxtls))
75 $(eval $(call BuildPackage,axhttpd))