hc
2023-12-04 f33f61bdb7ca6d5ebe7a78f9d8694b91360279ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
################################################################################
#
# flot
#
################################################################################
 
FLOT_VERSION = 0.8.3
FLOT_SITE = http://www.flotcharts.org/downloads
FLOT_LICENSE = MIT
FLOT_LICENSE_FILES = LICENSE.txt
FLOT_FILES = jquery.flot $(addprefix jquery.flot.,\
   $(if $(BR2_PACKAGE_FLOT_CANVAS),canvas) \
   $(if $(BR2_PACKAGE_FLOT_CATEGORIES),categories) \
   $(if $(BR2_PACKAGE_FLOT_CROSSHAIR),crosshair) \
   $(if $(BR2_PACKAGE_FLOT_ERRORBARS),errorbars) \
   $(if $(BR2_PACKAGE_FLOT_FILLBETWEEN),fillbetween) \
   $(if $(BR2_PACKAGE_FLOT_IMAGE),image) \
   $(if $(BR2_PACKAGE_FLOT_NAVIGATE),navigate) \
   $(if $(BR2_PACKAGE_FLOT_PIE),pie) \
   $(if $(BR2_PACKAGE_FLOT_RESIZE),resize) \
   $(if $(BR2_PACKAGE_FLOT_SELECTION),selection) \
   $(if $(BR2_PACKAGE_FLOT_STACK),stack) \
   $(if $(BR2_PACKAGE_FLOT_SYMBOL),symbol) \
   $(if $(BR2_PACKAGE_FLOT_THRESHOLD),threshold) \
   $(if $(BR2_PACKAGE_FLOT_TIME),time) \
   )
 
define FLOT_INSTALL_TARGET_CMDS
   for i in $(FLOT_FILES); do \
       $(INSTALL) -m 0644 -D $(@D)/$$i.min.js $(TARGET_DIR)/var/www/$$i.js || exit 1; \
   done
endef
 
$(eval $(generic-package))