diff options
author | Eduardo Chappa <chappa@washington.edu> | 2018-09-03 12:10:30 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2018-09-03 12:10:30 -0600 |
commit | e089a860ea48cab784e33c922a6cc9bfb092aeba (patch) | |
tree | 8a22bb4bb4575e112ddba6668d2f9ffd69002a09 /web/cgi | |
parent | fd310f16dad9cc1e05752e45d905ec1b3aa3c3d0 (diff) | |
download | alpine-e089a860ea48cab784e33c922a6cc9bfb092aeba.tar.xz |
* WebAlpine: Update configuration files and add script to download
yui_2.9.0.zip (there is no web version anymore). In addition add
sample gmail and gmx configuration files.
Diffstat (limited to 'web/cgi')
-rw-r--r-- | web/cgi/alpine/2.0/lib/README | 6 | ||||
l--------- | web/cgi/alpine/2.0/lib/yui | 2 | ||||
-rwxr-xr-x | web/cgi/alpine/2.0/lib/yui.sh | 15 |
3 files changed, 22 insertions, 1 deletions
diff --git a/web/cgi/alpine/2.0/lib/README b/web/cgi/alpine/2.0/lib/README new file mode 100644 index 00000000..87176808 --- /dev/null +++ b/web/cgi/alpine/2.0/lib/README @@ -0,0 +1,6 @@ +If you are interested in building web Alpine, you must download the +yui library, and install it in this directory. In order to help you +with this process, the script "yui.sh" does this job for you. + +The script uses the wget and unzip programs, which you must have +installed, and an internet connection to download the yui library. diff --git a/web/cgi/alpine/2.0/lib/yui b/web/cgi/alpine/2.0/lib/yui index 7f792d58..96704473 120000 --- a/web/cgi/alpine/2.0/lib/yui +++ b/web/cgi/alpine/2.0/lib/yui @@ -1 +1 @@ -yui-2.7.0
\ No newline at end of file +yui-2.9.0
\ No newline at end of file diff --git a/web/cgi/alpine/2.0/lib/yui.sh b/web/cgi/alpine/2.0/lib/yui.sh new file mode 100755 index 00000000..1e42bb87 --- /dev/null +++ b/web/cgi/alpine/2.0/lib/yui.sh @@ -0,0 +1,15 @@ +#!/bin/sh +if test ! -d "yui-2.9.0" ; then + rm -rf yui + echo "Downloading yui_2.9.0.zip. Wait...." + wget -q http://yui.github.io/yui2/archives/yui_2.9.0.zip + echo "Unpacking yui_2.9.0.zip..." + unzip -q yui_2.9.0.zip + echo "Removing yui_2.9.0.zip" + rm -f yui_2.9.0.zip + echo "Renaming yui to yui-2.9.0" + mv yui yui-2.9.0 + echo "Creating symbolic link yui to yui-2.9.0" + ln -s yui-2.9.0 yui +fi + |