c10d97484a
Note, that licensing stuff is a nightmare: many packages does not clearly state their licenses, and often multiple source files are simply copied together - each with different licensing information in the file headers. I tried hard to ensure, that the license information extracted into the OpenWRT's makefiles fit the "spirit" of the packages, e.g. such small packages which come without a dedicated source archive "inherites" the OpenWRT's own license in my opinion. However, I can not garantee that I always picked the correct information and/or did not miss license information. Signed-off-by: Michael Heimpold <mhei@heimpold.de> SVN-Revision: 43155
39 lines
777 B
Makefile
39 lines
777 B
Makefile
#
|
|
# Copyright (C) 2008-2010 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:=20110720
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=cryptodev.h
|
|
|
|
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
|
|
URL:=http://ocf-linux.sourceforge.net/
|
|
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))
|