firmware-utils: move bcm_tag.h here
[openwrt.git] / package / ocf-crypto-headers / Makefile
1 #
2 # Copyright (C) 2008-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=ocf-crypto-headers
10 PKG_VERSION:=20110720
11 PKG_RELEASE:=1
12
13 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
14
15 include $(INCLUDE_DIR)/package.mk
16
17 define Package/ocf-crypto-headers
18   SECTION:=utils
19   CATEGORY:=Utilities
20   TITLE:=OCF-Linux cryptodev header
21   PKGARCH:=all
22   URL:=http://ocf-linux.sourceforge.net/
23 endef
24
25 define Build/Configure
26 endef
27
28 define Build/Compile
29 endef
30
31 define Build/InstallDev
32         mkdir -p $(1)/usr/include/crypto
33         $(CP) ./src/cryptodev.h $(1)/usr/include/crypto
34 endef
35
36 $(eval $(call BuildPackage,ocf-crypto-headers))