bootstrap.mk 1015 B

12345678910111213141516171819202122232425262728
  1. ################################################################################
  2. #
  3. # bootstrap
  4. #
  5. ################################################################################
  6. BOOTSTRAP_VERSION = 4.3.1
  7. BOOTSTRAP_SITE = https://github.com/twbs/bootstrap/releases/download/v$(BOOTSTRAP_VERSION)
  8. BOOTSTRAP_SOURCE = bootstrap-$(BOOTSTRAP_VERSION)-dist.zip
  9. BOOTSTRAP_LICENSE = MIT
  10. BOOTSTRAP_LICENSE_FILES = css/bootstrap.css
  11. BOOTSTRAP_CPE_ID_VENDOR = getbootstrap
  12. define BOOTSTRAP_EXTRACT_CMDS
  13. $(UNZIP) $(BOOTSTRAP_DL_DIR)/$(BOOTSTRAP_SOURCE) -d $(@D)
  14. mv $(@D)/bootstrap-$(BOOTSTRAP_VERSION)-dist/* $(@D)
  15. endef
  16. define BOOTSTRAP_INSTALL_TARGET_CMDS
  17. $(INSTALL) -m 0644 -D $(@D)/css/bootstrap.min.css \
  18. $(TARGET_DIR)/var/www/bootstrap/css/bootstrap.min.css
  19. $(INSTALL) -m 0644 -D $(@D)/css/bootstrap.min.css.map \
  20. $(TARGET_DIR)/var/www/bootstrap/css/bootstrap.min.css.map
  21. $(INSTALL) -m 0644 -D $(@D)/js/bootstrap.min.js \
  22. $(TARGET_DIR)/var/www/bootstrap/js/bootstrap.min.js
  23. endef
  24. $(eval $(generic-package))