1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 01:18:54 +03:00
openwrt-xburst/package/ocf-crypto-headers/Makefile
hauke 32dec7075a ocf-linux: version bump to 20110720
Fixes problem with TFM allocation in cryptosoft.c


Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>

Hauke:
 * remove ubsec_ssb package and take it from ocf-linux
 * use patches from ocf-linux package
 * refresh all patches
 * readd some build fixes for OpenWrt.
 * readd CRYPTO_MANAGER dependency


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27753 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-07-24 14:17:58 +00:00

37 lines
719 B
Makefile

#
# Copyright (C) 2008-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:=ocf-crypto-headers
PKG_VERSION:=20110720
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/ocf-crypto-headers
SECTION:=utils
CATEGORY:=Utilities
TITLE:=OCF-Linux cryptodev header
PKGARCH:=all
URL:=http://ocf-linux.sourceforge.net/
endef
define Build/Configure
endef
define Build/Compile
endef
define Build/InstallDev
mkdir -p $(1)/usr/include/crypto
$(CP) ./src/cryptodev.h $(1)/usr/include/crypto
endef
$(eval $(call BuildPackage,ocf-crypto-headers))