Move all to deprecated folder.
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,2 @@
|
||||
# Locally computed:
|
||||
sha256 95ca4a02aff37570660c81a87065b53ebc281c33fa86b91a6a7a650eee10678f bootstrap-3.3.1-dist.zip
|
||||
26
deprecated/firmware/buildroot/package/bootstrap/bootstrap.mk
Normal file
26
deprecated/firmware/buildroot/package/bootstrap/bootstrap.mk
Normal file
@@ -0,0 +1,26 @@
|
||||
################################################################################
|
||||
#
|
||||
# bootstrap
|
||||
#
|
||||
################################################################################
|
||||
|
||||
BOOTSTRAP_VERSION = 3.3.1
|
||||
BOOTSTRAP_SITE = https://github.com/twbs/bootstrap/releases/download/v$(BOOTSTRAP_VERSION)
|
||||
BOOTSTRAP_SOURCE = bootstrap-$(BOOTSTRAP_VERSION)-dist.zip
|
||||
BOOTSTRAP_LICENSE = MIT
|
||||
|
||||
define BOOTSTRAP_EXTRACT_CMDS
|
||||
$(UNZIP) $(DL_DIR)/$(BOOTSTRAP_SOURCE) -d $(@D)
|
||||
endef
|
||||
|
||||
define BOOTSTRAP_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0644 -D $(@D)/dist/css/bootstrap-theme.min.css \
|
||||
$(TARGET_DIR)/var/www/bootstrap/css/bootstrap-theme.min.css
|
||||
$(INSTALL) -m 0644 -D $(@D)/dist/css/bootstrap.min.css \
|
||||
$(TARGET_DIR)/var/www/bootstrap/css/bootstrap.min.css
|
||||
$(INSTALL) -m 0644 -D $(@D)/dist/js/bootstrap.min.js \
|
||||
$(TARGET_DIR)/var/www/bootstrap/js/bootstrap.min.js
|
||||
cp -r $(@D)/dist/fonts $(TARGET_DIR)/var/www/bootstrap/
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user