initial commit
[ETG_Helmet] / SOFTWARE / UTILS / sshpass / Makefile
1 include $(TOPDIR)/rules.mk
2 #Name and release number of this package
3 PKG_NAME:=sshpass
4 PKG_RELEASE:=1.5
5
6 PKG_BUILD_DIR :=$(BUILD_DIR)/$(PKG_NAME)
7
8 include $(INCLUDE_DIR)/package.mk
9
10 define Package/sshpass
11         SECTION:=utils
12         CATEGORY:=Utilities
13         TITLE:=sshpass
14 endef
15
16 define Package/sshpass/description
17         Sshpass is a tool for non-interactivly performing password authentication with SSH's
18 endef
19
20 #Specify what needs to be done to prepare for building the package.
21 define Build/Prepare
22         mkdir -p $(PKG_BUILD_DIR)
23         $(CP) ./src/* $(PKG_BUILD_DIR)/
24 endef
25
26 #Specify where and how to install the program.
27 define Package/sshpass/install
28         $(INSTALL_DIR) $(1)/bin
29         $(INSTALL_BIN) $(PKG_BUILD_DIR)/sshpass $(1)/bin/
30 endef
31
32 #This line executes the necessary commands to compile our program.
33 $(eval $(call BuildPackage,sshpass))
Contact me: dev (at) shalnoff (dot) com
PGP fingerprint: A6B8 3B23 6013 F18A 0C71 198B 83D8 C64D 917A 5717