Makefile 771 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Copyright (C) 2015 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:=imx-uuc
  9. PKG_RELEASE:=1
  10. PKG_SOURCE_PROTO:=git
  11. PKG_SOURCE_URL:=https://github.com/mhei/fsl-imx-uuc.git
  12. PKG_SOURCE_DATE:=2015-09-13
  13. PKG_SOURCE_VERSION:=2b99403b6dc60a22b07eb7a5cc0cb184abb89bdd
  14. PKG_MIRROR_HASH:=b0edd55674cd60268c9b293b47df17db319fd58bd78fdbf26e77039f1a6cf681
  15. PKG_LICENSE:=GPL-2.0+
  16. PKG_LICENSE_FILES:=LICENSE
  17. include $(INCLUDE_DIR)/host-build.mk
  18. define Host/Configure
  19. endef
  20. define Host/Install
  21. $(INSTALL_BIN) $(HOST_BUILD_DIR)/sdimage $(STAGING_DIR_HOST)/bin/sdimage
  22. endef
  23. define Host/Clean
  24. rm -f $(STAGING_DIR_HOST)/bin/sdimage
  25. endef
  26. $(eval $(call HostBuild))