Makefile 673 B

1234567891011121314151617181920212223242526272829303132333435
  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. PKG_NAME:=ocf-crypto-headers
  9. PKG_VERSION:=20080917
  10. PKG_RELEASE:=1
  11. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/ocf-crypto-headers
  14. SECTION:=utils
  15. CATEGORY:=Utilities
  16. TITLE:=OCF-Linux cryptodev header
  17. PKGARCH:=all
  18. endef
  19. define Build/Configure
  20. endef
  21. define Build/Compile
  22. endef
  23. define Build/InstallDev
  24. mkdir -p $(1)/usr/include/crypto
  25. $(CP) ./src/cryptodev.h $(1)/usr/include/crypto
  26. endef
  27. $(eval $(call BuildPackage,ocf-crypto-headers))