tn3399_openwrt/package/ocf-crypto-headers/Makefile
Florian Fainelli ffc1fefe2c set PKGARCH to all for packages in trunk containing only arch-neutral files (#5572)
Signed-off-by: Malte S. Stretz <mss@apache.org>

SVN-Revision: 16966
2009-07-24 12:08:01 +00:00

36 lines
673 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
PKGARCH:=all
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))