forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme_moodle.txt
38 lines (32 loc) · 1.34 KB
/
readme_moodle.txt
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
35
36
37
38
Description of import of Horde libraries
# Clone the Horde Git Tools repository and install. You will need
this for future updates:
https://github.com/horde/git-tools
# Make sure to follow the #Configuration step mentioned in the URL above. In
particular make sure to set the 'git_base' config option in conf.php
# Go into the repository cloned above and perform the following:
bin/horde-git-tools git clone
(Go for a coffee, this will take a while)
# Checkout the latest stable version for all repos, currently 5.2:
bin/horde-git-tools git checkout FRAMEWORK_5_2
# Copy the following script and store it on /tmp, change it's execute bit(chmod 777), and run it,
passing in your path to Horde (the directory you've cloned the repository):
/tmp/copyhorde.sh ~/git/base/directory/from/step/2
====
#!/bin/sh
source=$1
target=./lib/horde
echo "Copy Horde modules from $source to $target"
modules="Crypt_Blowfish Exception Idna Imap_Client Mail Mime Secret Socket_Client Stream Stream_Filter Stream_Wrapper Support Text_Flowed Translation Util"
rm -rf $target/locale $target/framework
mkdir -p $target/locale $target/framework/Horde
for module in $modules
do
echo "Copying $module"
cp -Rf $source/$module/lib/Horde/* $target/framework/Horde
locale=$source/$module/locale
if [ -d $locale ]
then
cp -Rf $locale/* $target/locale
fi
done