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