[packages] add "pwcrypt", a cli wrapper around the crypt() call (#7490)

git-svn-id: svn://svn.openwrt.org/openwrt/packages@21862 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2010-06-21 21:57:27 +00:00
parent efff0dfaab
commit 1327fa9c57

36
utils/pwcrypt/Makefile Normal file
View File

@ -0,0 +1,36 @@
#
# Copyright (C) 2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=pwcrypt
PKG_VERSION:=1.2.2
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://xjack.org/pwcrypt/downloads
PKG_MD5SUM:=381a60c8debe5b21c935b19684de
include $(INCLUDE_DIR)/package.mk
define Package/pwcrypt
SECTION:=utils
CATEGORY:=Utilities
TITLE:=A utility to create crypted passwords from plaintext
URL:=http://xjack.org/pwcrypt
endef
define Package/pwcrypt/description
A wrapper for the unix crypt() function. Supports crypt and MD5 hashing
endef
define Package/pwcrypt/install
$(INSTALL_DIR) $(1)/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/pwcrypt $(1)/sbin/
endef
$(eval $(call BuildPackage,pwcrypt))