2 # Copyright (C) 2006-2009 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
14 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
16 http
://matt.ucc.asn.au
/dropbear
/releases
/ \
17 http
://www.mirrors.wiretapped.net
/security
/cryptography
/apps
/ssh
/dropbear
/
18 PKG_MD5SUM
:=1c69ec674481d7745452f68f2ea5597e
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
/dropbear
/conffiles
38 /etc
/dropbear
/dropbear_rsa_host_key
39 /etc
/dropbear
/dropbear_dss_host_key
43 define Package
/dropbearconvert
44 $(call Package
/dropbear
/Default
)
47 TITLE
:=Utility for converting SSH keys
55 $(if
$(CONFIG_SHADOW_PASSWORDS
),,--disable-shadow
) \
63 --disable-pututxline \
66 define Build
/Configure
67 $(SED
) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(PKG_BUILD_DIR
)/options.h
68 $(SED
) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(PKG_BUILD_DIR
)/options.h
69 $(call Build
/Configure
/Default
)
73 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
74 $(TARGET_CONFIGURE_OPTS
) \
76 PROGRAMS
="dropbear dbclient dropbearkey scp" \
78 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
79 $(TARGET_CONFIGURE_OPTS
) \
81 PROGRAMS
="dropbearconvert"
84 define Package
/dropbear
/install
85 $(INSTALL_DIR
) $(1)/usr
/sbin
86 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/dropbearmulti
$(1)/usr
/sbin
/dropbear
87 $(INSTALL_DIR
) $(1)/usr
/bin
88 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/scp
89 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/ssh
90 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/dbclient
91 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/dropbearkey
92 $(INSTALL_DIR
) $(1)/etc
/config
93 $(INSTALL_DATA
) .
/files
/dropbear.config
$(1)/etc
/config
/dropbear
94 $(INSTALL_DIR
) $(1)/etc
/init.d
95 $(INSTALL_BIN
) .
/files
/dropbear.init
$(1)/etc
/init.d
/dropbear
96 $(INSTALL_DIR
) $(1)/usr
/lib
/opkg
/info
97 $(INSTALL_DIR
) $(1)/etc
/dropbear
98 touch
$(1)/etc
/dropbear
/dropbear_rsa_host_key
99 touch
$(1)/etc
/dropbear
/dropbear_dss_host_key
102 define Package
/dropbearconvert
/install
103 $(INSTALL_DIR
) $(1)/usr
/bin
104 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/dropbearconvert
$(1)/usr
/bin
/dropbearconvert
107 $(eval
$(call BuildPackage
,dropbear
))
108 $(eval
$(call BuildPackage
,dropbearconvert
))