2 # Copyright (C) 2006-2008 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
17 http
://matt.ucc.asn.au
/dropbear
/releases
/ \
18 http
://www.mirrors.wiretapped.net
/security
/cryptography
/apps
/ssh
/dropbear
/
19 PKG_MD5SUM
:=1045df60c2bdbd39c707238305a1e9e5
21 include $(INCLUDE_DIR
)/package.mk
23 define Package
/dropbear
/Default
24 URL
:=http
://matt.ucc.asn.au
/dropbear
/
27 define Package
/dropbear
28 $(call Package
/dropbear
/Default
)
31 TITLE
:=Small SSH2 client
/server
34 define Package
/dropbear
/description
35 A small SSH2 server
/client designed for small memory environments.
38 define Package
/dropbear
/conffiles
39 /etc
/dropbear
/dropbear_rsa_host_key
40 /etc
/dropbear
/dropbear_dss_host_key
44 define Package
/dropbearconvert
45 $(call Package
/dropbear
/Default
)
48 TITLE
:=Utility for converting SSH keys
56 $(if
$(CONFIG_SHADOW_PASSWORDS
),,--disable-shadow
) \
64 --disable-pututxline \
67 define Build
/Configure
68 $(SED
) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(PKG_BUILD_DIR
)/options.h
69 $(SED
) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(PKG_BUILD_DIR
)/options.h
70 $(call Build
/Configure
/Default
)
74 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
75 $(TARGET_CONFIGURE_OPTS
) \
77 PROGRAMS
="dropbear dbclient dropbearkey scp" \
79 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
80 $(TARGET_CONFIGURE_OPTS
) \
82 PROGRAMS
="dropbearconvert"
85 define Package
/dropbear
/install
86 $(INSTALL_DIR
) $(1)/usr
/sbin
87 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/dropbearmulti
$(1)/usr
/sbin
/dropbear
88 $(INSTALL_DIR
) $(1)/usr
/bin
89 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/scp
90 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/ssh
91 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/dbclient
92 ln
-sf ..
/sbin
/dropbear
$(1)/usr
/bin
/dropbearkey
93 $(INSTALL_DIR
) $(1)/etc
/config
94 $(INSTALL_DATA
) .
/files
/dropbear.config
$(1)/etc
/config
/dropbear
95 $(INSTALL_DIR
) $(1)/etc
/init.d
96 $(INSTALL_BIN
) .
/files
/dropbear.init
$(1)/etc
/init.d
/dropbear
97 $(INSTALL_DIR
) $(1)/usr
/lib
/opkg
/info
98 $(INSTALL_DIR
) $(1)/etc
/dropbear
99 touch
$(1)/etc
/dropbear
/dropbear_rsa_host_key
100 touch
$(1)/etc
/dropbear
/dropbear_dss_host_key
103 define Package
/dropbearconvert
/install
104 $(INSTALL_DIR
) $(1)/usr
/bin
105 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/dropbearconvert
$(1)/usr
/bin
/dropbearconvert
108 $(eval
$(call BuildPackage
,dropbear
))
109 $(eval
$(call BuildPackage
,dropbearconvert
))