2 # Copyright (C) 2006-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
10 PKG_NAME:=matrixtunnel
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://znerol.ch/files
16 PKG_MD5SUM:=af169751efc7d87d500716a48d74ddc5
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
22 include $(INCLUDE_DIR)/package.mk
26 define Package/matrixtunnel
30 DEPENDS:=+libmatrixssl
31 TITLE:=SSL tunnel based on matrixssl
32 URL:=http://znerol.ch/svn/matrixtunnel/trunk/
35 define Package/matrixtunnel/description
36 matrixtunnel is a stripped down version of stunnel
37 based on matrixssl library.
40 define Build/Configure
41 $(call Build/Configure/Default, \
42 --without-libiconv-prefix \
43 --without-libintl-prefix \
44 --with-matrixssl-src="$(BUILD_DIR)/matrixssl" \
48 define Package/matrixtunnel/install
49 $(INSTALL_DIR) $(1)/usr/bin
50 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/matrixtunnel $(1)/usr/bin/
53 $(eval $(call BuildPackage,matrixtunnel))