From: juhosg Date: Tue, 18 Nov 2008 20:57:34 +0000 (+0000) Subject: [packages] utils: add crypto-tools X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=fede4dec486fd0a88a1bc4e584bf68b3a5357654;p=packages.git [packages] utils: add crypto-tools git-svn-id: svn://svn.openwrt.org/openwrt/packages@13285 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/utils/crypto-tools/Makefile b/utils/crypto-tools/Makefile new file mode 100644 index 000000000..d90a2e0c2 --- /dev/null +++ b/utils/crypto-tools/Makefile @@ -0,0 +1,39 @@ +# +# Copyright (C) 2008 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. + +include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/kernel.mk + +PKG_NAME:=crypto-tools +PKG_VERSION:=20080917 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@SF/ocf-linux +PKG_MD5SUM:=d20377afefa707fe528b161c2174e874 + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) +PKG_BUILD_DEPENDS:=libopenssl + +include $(INCLUDE_DIR)/package.mk + +define Package/crypto-tools + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+libopenssl + TITLE:=OCF-Linux's crypto-tools +endef + +define Build/Configure +endef + +define Package/crypto-tools/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/cryptotest $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/cryptokeytest $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,crypto-tools))