2017-10-21 16:12:44 -05:00
|
|
|
#! /bin/bash
|
|
|
|
# This file is part of the LibreOffice project.
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
# check we can sudo without asking a pwd
|
|
|
|
echo "Trying if sudo works without a password"
|
|
|
|
echo
|
|
|
|
echo "If you get a password prompt now, break, and fix your setup using 'sudo visudo'; add something like:"
|
|
|
|
echo "yourusername ALL=(ALL) NOPASSWD: ALL"
|
|
|
|
echo
|
|
|
|
sudo echo "works"
|
|
|
|
|
|
|
|
# check if we have jake
|
|
|
|
which jake || { cat << EOF
|
|
|
|
|
|
|
|
jake is not installed, get it like:
|
|
|
|
|
|
|
|
npm install -g jake
|
|
|
|
EOF
|
|
|
|
exit 1 ; }
|
|
|
|
|
|
|
|
# do everything in the builddir
|
|
|
|
SRCDIR=$(realpath `dirname $0`)
|
|
|
|
INSTDIR="$SRCDIR/instdir"
|
|
|
|
BUILDDIR="$SRCDIR/builddir"
|
|
|
|
|
|
|
|
mkdir -p "$BUILDDIR"
|
|
|
|
cd "$BUILDDIR"
|
|
|
|
|
|
|
|
rm -rf "$INSTDIR"
|
|
|
|
mkdir -p "$INSTDIR"
|
|
|
|
|
|
|
|
##### cloning & updating #####
|
|
|
|
|
|
|
|
# libreoffice repo
|
|
|
|
if test ! -d libreoffice ; then
|
|
|
|
git clone git://anongit.freedesktop.org/libreoffice/core libreoffice || exit 1
|
2018-01-05 10:25:42 -06:00
|
|
|
fi
|
|
|
|
|
2018-01-06 16:00:07 -06:00
|
|
|
( cd libreoffice && git checkout master && ./g pull -r ) || exit 1
|
2018-01-05 10:25:42 -06:00
|
|
|
|
|
|
|
# online repo
|
|
|
|
if test ! -d online ; then
|
|
|
|
git clone git://anongit.freedesktop.org/libreoffice/online online || exit 1
|
|
|
|
( cd online && ./autogen.sh ) || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
( cd online && git checkout -f master && git pull -r ) || exit 1
|
|
|
|
|
|
|
|
##### LibreOffice #####
|
|
|
|
|
|
|
|
# build LibreOffice
|
|
|
|
cat > libreoffice/autogen.input << EOF
|
2017-10-21 16:12:44 -05:00
|
|
|
--disable-cups
|
|
|
|
--disable-dbus
|
|
|
|
--disable-dconf
|
|
|
|
--disable-epm
|
|
|
|
--disable-evolution2
|
|
|
|
--disable-ext-nlpsolver
|
|
|
|
--disable-ext-wiki-publisher
|
|
|
|
--disable-firebird-sdbc
|
|
|
|
--disable-gio
|
|
|
|
--disable-gstreamer-0-10
|
|
|
|
--disable-gstreamer-1-0
|
|
|
|
--disable-gtk
|
|
|
|
--disable-gtk3
|
|
|
|
--disable-kde4
|
|
|
|
--disable-odk
|
|
|
|
--disable-online-update
|
|
|
|
--disable-pdfimport
|
|
|
|
--disable-postgresql-sdbc
|
|
|
|
--disable-report-builder
|
|
|
|
--disable-scripting-beanshell
|
|
|
|
--disable-scripting-javascript
|
|
|
|
--disable-sdremote
|
|
|
|
--disable-sdremote-bluetooth
|
|
|
|
--enable-extension-integration
|
|
|
|
--enable-mergelibs
|
|
|
|
--enable-python=internal
|
|
|
|
--enable-release-build
|
|
|
|
--with-external-dict-dir=/usr/share/hunspell
|
|
|
|
--with-external-hyph-dir=/usr/share/hyphen
|
|
|
|
--with-external-thes-dir=/usr/share/mythes
|
|
|
|
--with-fonts
|
|
|
|
--with-galleries=no
|
2018-01-05 10:09:44 -06:00
|
|
|
--with-lang=ALL
|
2017-10-21 16:12:44 -05:00
|
|
|
--with-linker-hash-style=both
|
|
|
|
--with-system-dicts
|
|
|
|
--with-system-zlib
|
2018-05-08 04:20:01 -05:00
|
|
|
--with-theme=colibre
|
2017-10-21 16:12:44 -05:00
|
|
|
--without-branding
|
|
|
|
--without-help
|
|
|
|
--without-java
|
|
|
|
--without-junit
|
2018-01-05 10:24:33 -06:00
|
|
|
--with-myspell-dicts
|
2017-10-21 16:12:44 -05:00
|
|
|
--without-package-format
|
2018-01-05 10:12:34 -06:00
|
|
|
--without-system-cairo
|
2017-10-21 16:12:44 -05:00
|
|
|
--without-system-jars
|
|
|
|
--without-system-jpeg
|
|
|
|
--without-system-libpng
|
|
|
|
--without-system-libxml
|
|
|
|
--without-system-openssl
|
|
|
|
--without-system-poppler
|
|
|
|
--without-system-postgresql
|
|
|
|
EOF
|
|
|
|
|
2018-01-05 10:25:42 -06:00
|
|
|
( cd libreoffice && ./autogen.sh ) || exit 1
|
2017-10-21 16:12:44 -05:00
|
|
|
( cd libreoffice && make ) || exit 1
|
|
|
|
|
|
|
|
# copy stuff
|
|
|
|
mkdir -p "$INSTDIR"/opt/
|
|
|
|
cp -a libreoffice/instdir "$INSTDIR"/opt/libreoffice
|
|
|
|
|
|
|
|
##### loolwsd & loleaflet #####
|
|
|
|
|
|
|
|
# build
|
|
|
|
( cd online && ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-silent-rules --with-lokit-path="$BUILDDIR"/libreoffice/include --with-lo-path="$INSTDIR"/opt/libreoffice ) || exit 1
|
|
|
|
( cd online/loleaflet/po && ../../scripts/downloadpootle.sh )
|
2018-01-16 07:47:08 -06:00
|
|
|
( cd online/loleaflet && make l10n) || exit 1
|
2018-01-17 16:45:25 -06:00
|
|
|
( cd online && scripts/locorestrings.py "$BUILDDIR"/online "$BUILDDIR"/libreoffice/translations )
|
|
|
|
( cd online && scripts/unocommands.py --update "$BUILDDIR"/online "$BUILDDIR"/libreoffice )
|
|
|
|
( cd online && scripts/unocommands.py --translate "$BUILDDIR"/online "$BUILDDIR"/libreoffice/translations )
|
2017-10-21 16:12:44 -05:00
|
|
|
( cd online && make -j 8) || exit 1
|
|
|
|
|
|
|
|
# copy stuff
|
|
|
|
( cd online && DESTDIR="$INSTDIR" make install ) || exit 1
|
|
|
|
|
|
|
|
# Create new docker image
|
|
|
|
|
|
|
|
cd "$SRCDIR"
|
|
|
|
docker build --no-cache -t libreoffice/online:master . || exit 1
|
|
|
|
docker push libreoffice/online:master || exit 1
|