2 # Copyright (C) 2006 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)
20 include $(INCLUDE_DIR)/package.mk
22 define Package/matrixtunnel
26 DEPENDS:=+libmatrixssl
27 TITLE:=SSL tunnel based on matrixssl
28 URL:=http://znerol.ch/svn/matrixtunnel/trunk/
31 define Package/matrixtunnel/description
32 matrixtunnel is a stripped down version of stunnel
33 based on matrixssl library.
36 define Build/Configure
37 $(call Build/Configure/Default, \
38 --without-libiconv-prefix \
39 --without-libintl-prefix \
40 --with-matrixssl-src="$(BUILD_DIR)/matrixssl" \
45 $(MAKE) -C $(PKG_BUILD_DIR)/src \
46 DESTDIR="$(PKG_INSTALL_DIR)" \
50 define Package/matrixtunnel/install
51 $(INSTALL_DIR) $(1)/usr/bin
52 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/matrixtunnel $(1)/usr/bin/
55 $(eval $(call BuildPackage,matrixtunnel))