2013-10-22 18:23:29 +02:00
|
|
|
################################################
|
|
|
|
# OpenWrt Makefile for Doodle3D Print3D driver #
|
|
|
|
################################################
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME := doodle3d-client
|
2013-12-12 14:14:34 +01:00
|
|
|
PKG_VERSION := 0.9.3
|
2013-10-22 18:23:29 +02:00
|
|
|
PKG_RELEASE := 1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/doodle3d-client
|
|
|
|
SECTION:=mods
|
|
|
|
CATEGORY:=Doodle3D
|
|
|
|
TITLE:=Doodle3D web client
|
|
|
|
DEPENDS:=
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/doodle3d-client/description
|
|
|
|
This package provides the Doodle3D web client, which interacts with the wifibox package using a REST API.
|
|
|
|
endef
|
|
|
|
|
2013-11-29 23:25:14 +01:00
|
|
|
define Package/doodle3d-client/config
|
|
|
|
config DOODLE3D_CLIENT_MINIFY_JS
|
|
|
|
depends on PACKAGE_doodle3d-client
|
|
|
|
bool "Minify javascript"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
All javascript files are concatenated into one file; this file enables minification
|
|
|
|
of that file. Disable this to make on-the-fly modifications easier.
|
|
|
|
endef
|
|
|
|
|
2013-10-22 18:23:29 +02:00
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
$(CP) less $(PKG_BUILD_DIR)/
|
|
|
|
$(CP) www $(PKG_BUILD_DIR)/
|
|
|
|
$(CP) Gruntfile.js $(PKG_BUILD_DIR)/
|
|
|
|
$(CP) README.md $(PKG_BUILD_DIR)/
|
|
|
|
$(CP) ___settings.html $(PKG_BUILD_DIR)/
|
|
|
|
$(CP) lesstocss.sh $(PKG_BUILD_DIR)/
|
|
|
|
$(CP) package.json $(PKG_BUILD_DIR)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
npm install
|
2013-11-29 23:25:14 +01:00
|
|
|
ifeq ($(CONFIG_DOODLE3D_CLIENT_MINIFY_JS),y)
|
|
|
|
grunt less autoprefixer cssmin concat uglify
|
|
|
|
else
|
|
|
|
grunt less autoprefixer cssmin concat
|
|
|
|
endif
|
2013-10-22 18:23:29 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/doodle3d-client/install
|
|
|
|
$(INSTALL_DIR) $(1)/www
|
|
|
|
$(INSTALL_DIR) $(1)/www/css
|
|
|
|
$(INSTALL_DIR) $(1)/www/img
|
|
|
|
#$(INSTALL_DIR) $(1)/www/js
|
|
|
|
$(INSTALL_DIR) $(1)/www/js/libs
|
|
|
|
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/favicon* $(1)/www/
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/index.html $(1)/www/
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/settings.html $(1)/www/
|
2013-10-23 17:26:19 +02:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/helpcontent.html $(1)/www/
|
2013-10-22 18:23:29 +02:00
|
|
|
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/css/debug.min.css $(1)/www/css/
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/css/settings.min.css $(1)/www/css/
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/css/styles.min.css $(1)/www/css/
|
|
|
|
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/img/* $(1)/www/img/
|
|
|
|
|
2013-11-29 23:25:14 +01:00
|
|
|
ifeq ($(CONFIG_DOODLE3D_CLIENT_MINIFY_JS),y)
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/js/doodle3d-client.min.js $(1)/www/js/
|
|
|
|
else
|
|
|
|
#NOTE: if using a symlink here installation with openwrt make fails
|
|
|
|
# when trying to build with minification after package has been built
|
|
|
|
# without minification (dangling symlink breaks openwrt's final copy command)
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/js/doodle3d-client.js $(1)/www/js/doodle3d-client.min.js
|
|
|
|
#$(LN) -s /www/js/doodle3d-client.js $(1)/www/js/doodle3d-client.min.js
|
|
|
|
endif
|
|
|
|
|
2013-10-22 18:23:29 +02:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/js/libs/* $(1)/www/js/libs/
|
|
|
|
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/www/library $(1)/www/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,doodle3d-client))
|