You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
993 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=sshpass
  3. PKG_VERSION:=1.06
  4. PKG_RELEASE:=1
  5. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  6. PKG_SOURCE_URL:=@SF/sshpass
  7. PKG_HASH:=c6324fcee608b99a58f9870157dfa754837f8c48be3df0f5e2f3accf145dee60
  8. PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>
  9. PKG_LICENSE:=GPL-2.0-or-later
  10. PKG_LICENSE_FILES:=COPYING
  11. PKG_INSTALL:=1
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/sshpass
  14. SECTION:=utils
  15. CATEGORY:=Utilities
  16. TITLE:=Non-interactive ssh password auth
  17. URL:=https://sourceforge.net/projects/sshpass/
  18. endef
  19. define Package/sshpass/description
  20. Sshpass is a tool for non-interactively performing password authentication
  21. with SSH's so-called "interactive keyboard password authentication". Most user
  22. should use SSH's more secure public-key authentication instead.
  23. endef
  24. define Package/sshpass/install
  25. $(INSTALL_DIR) $(1)/usr/bin
  26. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/sshpass $(1)/usr/bin
  27. endef
  28. $(eval $(call BuildPackage,sshpass))