forked from opentelecoms-org/jscommunicator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
code_grabber
executable file
·21 lines (17 loc) · 909 Bytes
/
code_grabber
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
wget http://code.jquery.com/jquery-1.7.2.min.js -O jquery.js
wget https://freephonebox.net/JsSIP.js -O JsSIP.js
wget http://arbiterjs.com/Arbiter.js -O Arbiter.js
wget https://jquery-i18n-properties.googlecode.com/files/jquery.i18n.properties-min-1.0.9.js -O jquery.i18n.properties.js
mkdir -p font-awesome/css
mkdir -p font-awesome/fonts
mkdir -p temp
wget -P temp http://jqueryui.com/resources/download/jquery-ui-1.10.4.zip
unzip -d temp temp/jquery-ui-1.10.4.zip
cp temp/jquery-ui-1.10.4/js/jquery-ui-1.10.4.min.js jquery-ui.js
cp temp/jquery-ui-1.10.4/css/ui-lightness/jquery-ui-1.10.4.css jquery-ui.css
wget -P temp http://fortawesome.github.io/Font-Awesome/assets/font-awesome-4.1.0.zip
unzip -d temp temp/font-awesome-4.1.0.zip
cp temp/font-awesome-4.1.0/css/font-awesome.min.css font-awesome/css/font-awesome.min.css
cp -a temp/font-awesome-4.1.0/fonts/. font-awesome/fonts
rm -r temp