diff options
Diffstat (limited to 'package/sshpass')
-rw-r--r-- | package/sshpass/Config.in | 9 | ||||
-rw-r--r-- | package/sshpass/sshpass.mk | 12 |
2 files changed, 21 insertions, 0 deletions
diff --git a/package/sshpass/Config.in b/package/sshpass/Config.in new file mode 100644 index 0000000000..24e46295df --- /dev/null +++ b/package/sshpass/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_SSHPASS + bool "sshpass" + depends on BR2_USE_MMU # fork() + help + Sshpass is a tool for non-interactivly performing + password authentication with SSH's so called + "interactive keyboard password authentication". + + http://sshpass.sourceforge.net diff --git a/package/sshpass/sshpass.mk b/package/sshpass/sshpass.mk new file mode 100644 index 0000000000..7344ca6921 --- /dev/null +++ b/package/sshpass/sshpass.mk @@ -0,0 +1,12 @@ +################################################################################ +# +# sshpass +# +################################################################################ + +SSHPASS_VERSION = 1.05 +SSHPASS_SITE = http://downloads.sourceforge.net/project/sshpass/sshpass/$(SSHPASS_VERSION) +SSHPASS_LICENSE = GPLv2+ +SSHPASS_LICENSE_FILES = COPYING + +$(eval $(autotools-package)) |