-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Build from source
Thomas B edited this page Mar 10, 2017
·
5 revisions
Building Roundcube from source is pretty similar to Creating a new release.
Let's list the individual steps with a short description:
git clone git://github.com/roundcube/roundcubemail.git roundcubemail-git
cd roundcubemail-git
git checkout tags/1.1.5
(check out whatever tag or branch you desire)
(for git master and versions >= 1.3 only)
bin/install-jsdeps.sh
bin/jsshrink.sh
bin/updatecss.sh
bin/cssshrink.sh
rm transifexpull.sh package2composer.sh importgettext.sh exportgettext.sh README.md INSTALL UPGRADING, LICENSE, CHANGELOG
rm -rf tests/ public_html/ installer/ .git* .tx*
7. Download and configure Composer
curl -sS https://getcomposer.org/installer | php -- --install-dir=/tmp/
cp composer.json-dist composer.json
php /tmp/composer.phar require pear-pear.php.net/net_ldap2:~2.1.0 kolab/net_ldap3:dev-master --no-update
php /tmp/composer.phar install --prefer-dist --no-dev
The roundcubemail-git
directory now contains a complete Roundcube installation ready for deployment or packaging.