mac80211: update to latest version from trunk
[openwrt-10.03/.git] / package / ocf-crypto-headers / Makefile
1 #
2 # Copyright (C) 2008 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:=20080917
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 endef
23
24 define Build/Configure
25 endef
26
27 define Build/Compile
28 endef
29
30 define Build/InstallDev
31         mkdir -p $(1)/usr/include/crypto
32         $(CP) ./src/cryptodev.h $(1)/usr/include/crypto
33 endef
34
35 $(eval $(call BuildPackage,ocf-crypto-headers))