1 Description of import of Horde libraries
3 # Download the Horde git repository. You will probably want to keep this
4 around for future updates:
5 git clone git@github.com:horde/horde.git
6 # Checkout the version of horde you require:
7 git checkout tags/horde_core-2.30.2 -b last
8 # Copy the following script and store it on /tmp, change it's execute bit, and run it, passing
9 in your path to Horde (the directory you've cloned the repository):
10 /tmp/copyhorde.sh ~/git/ext/horde/
18 echo "Copy Horde modules from $source to $target"
20 modules="Crypt_Blowfish Exception Idna Imap_Client Mail Mime Secret Socket_Client Stream Stream_Filter Stream_Wrapper Support Text_Flowed Translation Util"
22 rm -rf $target/locale $target/framework
23 mkdir -p $target/locale $target/framework/Horde
25 for module in $modules
27 echo "Copying $module"
28 cp -Rf $source/$module/lib/Horde/* $target/framework/Horde
29 locale=$source/$module/locale
32 cp -Rf $locale/* $target/locale