summaryrefslogtreecommitdiffstats
path: root/package/ocf-crypto-headers/Makefile
blob: cf9185a56934e6fee3dadff2193cd18882fc0725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# 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

PKG_NAME:=ocf-crypto-headers
PKG_VERSION:=20080917
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
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))