package: add jQuery Validation plugin

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2011-12-18 23:26:31 +01:00
parent 4e20e8fe00
commit 50e00c3b6d
3 changed files with 28 additions and 0 deletions

View File

@ -324,6 +324,7 @@ endif
menu "Javascript"
source "package/jquery/Config.in"
source "package/jquery-validation/Config.in"
endmenu
menu "Networking"

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_JQUERY_VALIDATION
bool "jQuery-Validation"
select BR2_PACKAGE_JQUERY
help
The jQuery Validation Plugin provides drop-in validation for
your existing forms, while making all kinds of
customizations to fit your application really easy.
http://bassistance.de/jquery-plugins/jquery-plugin-validation/

View File

@ -0,0 +1,18 @@
JQUERY_VALIDATION_VERSION = 1.9.0
JQUERY_VALIDATION_SITE = http://jquery.bassistance.de/validate
JQUERY_VALIDATION_SOURCE = jquery-validation-$(JQUERY_VALIDATION_VERSION).zip
define JQUERY_VALIDATION_EXTRACT_CMDS
unzip -d $(BUILD_DIR) $(DL_DIR)/$(JQUERY_VALIDATION_SOURCE)
endef
define JQUERY_VALIDATION_INSTALL_TARGET_CMDS
$(INSTALL) -D $(@D)/jquery.validate.min.js \
$(TARGET_DIR)/var/www/jquery.validate.js
endef
define JQUERY_VALIDATION_UNINSTALL_TARGET_CMDS
rm -f $(TARGET_DIR)/var/www/jquery.validate.js
endef
$(eval $(call GENTARGETS))