Makefile 691 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Copyright (C) 2016 adron@yapic.net
  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:=kernel2minor
  9. PKG_VERSION:=0.24
  10. PKG_RELEASE:=3
  11. PKG_SOURCE_URL:=https://github.com/adron-s/kernel2minor.git
  12. PKG_SOURCE_PROTO:=git
  13. PKG_SOURCE_VERSION:=2cacb4dec6673a60a972a3a7f7629464a26a8492
  14. PKG_HASH:=33ca413403a3341af0c9a8e6d9bb58f4ad080a5339e8a8729b83637d35bfaf1b
  15. include $(INCLUDE_DIR)/host-build.mk
  16. define Host/Install
  17. $(INSTALL_BIN) $(HOST_BUILD_DIR)/kernel2minor $(STAGING_DIR_HOST)/bin/
  18. endef
  19. define Host/Clean
  20. rm -f $(STAGING_DIR_HOST)/bin/kernel2minor
  21. endef
  22. $(eval $(call HostBuild))