initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_BOOTSTRAP
|
||||
bool "bootstrap"
|
||||
help
|
||||
Bootstrap is the most popular HTML, CSS, and JS framework
|
||||
for developing responsive, mobile first projects on the web.
|
||||
|
||||
http://getbootstrap.com
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally computed:
|
||||
sha256 888ffd30b7e192381e2f6a948ca04669fdcc2ccc2ba016de00d38c8e30793323 bootstrap-4.3.1-dist.zip
|
||||
sha256 35fbb6dc3891aacaf1ffa07abec2344fdbc454aab533a2a03bcf93577eb7837b css/bootstrap.css
|
||||
@@ -0,0 +1,28 @@
|
||||
################################################################################
|
||||
#
|
||||
# bootstrap
|
||||
#
|
||||
################################################################################
|
||||
|
||||
BOOTSTRAP_VERSION = 4.3.1
|
||||
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
|
||||
BOOTSTRAP_CPE_ID_VENDOR = getbootstrap
|
||||
|
||||
define BOOTSTRAP_EXTRACT_CMDS
|
||||
$(UNZIP) $(BOOTSTRAP_DL_DIR)/$(BOOTSTRAP_SOURCE) -d $(@D)
|
||||
mv $(@D)/bootstrap-$(BOOTSTRAP_VERSION)-dist/* $(@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)/css/bootstrap.min.css.map \
|
||||
$(TARGET_DIR)/var/www/bootstrap/css/bootstrap.min.css.map
|
||||
$(INSTALL) -m 0644 -D $(@D)/js/bootstrap.min.js \
|
||||
$(TARGET_DIR)/var/www/bootstrap/js/bootstrap.min.js
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user