nbd e296673ba6 packages: Use $(CP) instead of $(INSTALL_BIN) for binaries.
Signed-off-by: Andy Boyett <agb-openwrt@padded-cell.net>


git-svn-id: svn://svn.openwrt.org/openwrt/packages@9695 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-12-09 18:59:01 +00:00

57 lines
1.3 KiB
Makefile

#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=matrixtunnel
PKG_VERSION:=0.2
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://znerol.ch/files
PKG_MD5SUM:=af169751efc7d87d500716a48d74ddc5
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk
define Package/matrixtunnel
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libmatrixssl
TITLE:=SSL tunnel based on matrixssl
URL:=http://znerol.ch/svn/matrixtunnel/trunk/
endef
define Package/matrixtunnel/description
matrixtunnel is a stripped down version of stunnel
based on matrixssl library.
endef
define Build/Configure
$(call Build/Configure/Default, \
--without-libiconv-prefix \
--without-libintl-prefix \
--with-matrixssl-src="$(BUILD_DIR)/matrixssl" \
)
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)/src \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef
define Package/matrixtunnel/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/matrixtunnel $(1)/usr/bin/
endef
$(eval $(call BuildPackage,matrixtunnel))