1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-05 04:52:22 +03:00
openwrt-xburst/package/ocf-crypto-headers/Makefile
juhosg c52b059205 [package] add package for ocf-crypto-headers
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13283 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-11-18 20:50:18 +00:00

35 lines
658 B
Makefile

#
# 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))