use Build/Configure/Default macro, Makefile cleanup
[openwrt/svn-archive/archive.git] / net / matrixtunnel / 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:=matrixtunnel
12 PKG_VERSION:=0.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://znerol.ch/files
17 PKG_MD5SUM:=ffbbe0c50cc1863f6080aca302f7e2c8
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/matrixtunnel
26 SECTION:=net
27 CATEGORY:=Network
28 DEPENDS:=+libmatrixssl
29 TITLE:=SSL tunnel based on matrixssl
30 DESCRIPTION:=\
31 matrixtunnel is a stripped down version of stunnel \\\
32 based on matrixssl library.
33 URL:=http://znerol.ch/svn/matrixtunnel/trunk/
34 endef
35
36 define Build/Configure
37 $(call Build/Configure/Default, \
38 --without-libiconv-prefix \
39 --without-libintl-prefix \
40 --with-matrixssl-src="$(BUILD_DIR)/matrixssl" \
41 )
42 endef
43
44 define Build/Compile
45 $(MAKE) -C $(PKG_BUILD_DIR)/src \
46 DESTDIR="$(PKG_INSTALL_DIR)" \
47 all install
48 endef
49
50 define Package/matrixtunnel/install
51 install -d -m0755 $(1)/usr/bin
52 $(CP) $(PKG_INSTALL_DIR)/usr/bin/matrixtunnel $(1)/usr/bin/
53 endef
54
55 $(eval $(call BuildPackage,matrixtunnel))