6d45fb4226
git-svn-id: svn://svn.openwrt.org/openwrt/packages@16088 3c298f89-4303-0410-b956-a3cf2f4a3e73
77 lines
1.7 KiB
Makefile
77 lines
1.7 KiB
Makefile
#
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=axtls
|
|
PKG_VERSION:=1.2.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=axTLS-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/axtls
|
|
PKG_MD5SUM:=03471b5a5874e2ce86025f24b3fa0958
|
|
|
|
TAR_OPTIONS:=--transform='s,axTLS,$(PKG_NAME)-$(PKG_VERSION),' -xvf -
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libaxtls
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
SUBMENU:=ssl
|
|
TITLE:=Embedded client/server TLSv1 SSL library
|
|
URL:=http://sourceforge.net/projects/axtls
|
|
endef
|
|
|
|
define Package/axhttpd
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Web
|
|
DEPENDS:=+libaxtls
|
|
TITLE:=A small embedded web server using the axTLS library
|
|
URL:=http://www.axtls.co.nr/
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(CP) ./files/config $(PKG_BUILD_DIR)/config/.config
|
|
$(MAKE) -C $(PKG_BUILD_DIR) oldconfig
|
|
endef
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
CC="$(TARGET_CC)" \
|
|
STRIP="/bin/true" \
|
|
OPT_CFLAGS="$(TARGET_CFLAGS)" OPT_LDFLAGS="" \
|
|
all
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
PREFIX="$(PKG_INSTALL_DIR)/usr" \
|
|
install
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/axTLS $(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libaxtls.{a,so*} $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/libaxtls/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libaxtls.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/axhttpd/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/axhttpd $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libaxtls))
|
|
$(eval $(call BuildPackage,axhttpd))
|