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.
9 include $(TOPDIR
)/rules.mk
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
16 PKG_SOURCE_URL
:=http
://matt.ucc.asn.au
/dropbear
/releases
/ \
17 http
://www.mirrors.wiretapped.net
/security
/cryptography
/apps
/ssh
/dropbear
/
18 PKG_MD5SUM
:=5c0f7405b915799c3d952d3a93a5df69
20 include $(INCLUDE_DIR
)/package.mk
22 define Package
/dropbear
/Default
23 URL
:=http
://matt.ucc.asn.au
/dropbear
/
26 define Package
/dropbear
27 $(call Package
/dropbear
/Default
)
30 TITLE
:=Small SSH2 client
/server
33 define Package
/dropbear
/description
34 A small SSH2 server
/client designed for small memory environments.
37 define Package
/dropbearconvert
38 $(call Package
/dropbear
/Default
)
41 TITLE
:=Utility for converting SSH keys
57 --disable-pututxline \
60 define Build
/Configure
61 $(SED
) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(PKG_BUILD_DIR
)/options.h
62 $(SED
) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(PKG_BUILD_DIR
)/options.h
63 $(call Build
/Configure
/Default
)
67 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
68 $(TARGET_CONFIGURE_OPTS
) \
70 PROGRAMS
="dropbear dbclient dropbearkey scp" \
72 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
73 $(TARGET_CONFIGURE_OPTS
) \
75 PROGRAMS
="dropbearconvert"
78 define Package
/dropbear
/install
79 $(INSTALL_DIR
) $(1)/usr
/sbin
80 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/dropbearmulti
$(1)/usr
/sbin
/dropbear
81 $(INSTALL_DIR
) $(1)/usr
/bin
82 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/scp
83 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/ssh
84 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/dbclient
85 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/dropbearkey
86 $(INSTALL_DIR
) $(1)/etc
/config
87 $(INSTALL_DATA
) .
/files
/dropbear.config
$(1)/etc
/config
/dropbear
88 $(INSTALL_DIR
) $(1)/etc
/init.d
89 $(INSTALL_BIN
) .
/files
/dropbear.init
$(1)/etc
/init.d
/dropbear
90 $(INSTALL_DIR
) $(1)/usr
/lib
/ipkg
/info
91 echo
/etc
/dropbear
/dropbear_rsa_host_key
> $(1)/usr
/lib
/ipkg
/info/dropbear.conffiles
92 echo
/etc
/dropbear
/dropbear_dss_host_key
>> $(1)/usr
/lib
/ipkg
/info/dropbear.conffiles
95 define Package
/dropbearconvert
/install
96 $(INSTALL_DIR
) $(1)/usr
/bin
97 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/dropbearconvert
$(1)/usr
/bin
/dropbearconvert
100 $(eval
$(call BuildPackage
,dropbear
))
101 $(eval
$(call BuildPackage
,dropbearconvert
))