Makefile 821 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # Copyright (c) 2017-2019 Tomasz Maciej Nowak <tomek_n@o2.pl>
  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 := cbootimage-configs
  9. PKG_SOURCE_DATE := 2017-04-13
  10. PKG_SOURCE_PROTO := git
  11. PKG_SOURCE_URL := https://github.com/NVIDIA/cbootimage-configs.git
  12. PKG_SOURCE_VERSION := 7c3b458b93ed6947cd083623f543e93f9103cc0f
  13. PKG_MIRROR_HASH := 1d24421af8cf74ec2d625e237aa8121b1273774c4380ad333e2954e052a5a4fe
  14. include $(INCLUDE_DIR)/host-build.mk
  15. define Host/Compile
  16. endef
  17. define Host/Install
  18. $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/$(PKG_NAME)
  19. $(CP) $(HOST_BUILD_DIR)/* \
  20. $(STAGING_DIR_HOST)/share/$(PKG_NAME)
  21. endef
  22. define Host/Clean
  23. rm -fR $(STAGING_DIR_HOST)/share/$(PKG_NAME)
  24. endef
  25. $(eval $(call HostBuild))