Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libreoffice: fix building #1954

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions extra-productivity/libreoffice/autobuild/build
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ if [ "${CROSS:-$ARCH}" = "arm64" ]; then
sed -i '/call gb_HelpIndexTarget_HelpIndexTarget/d' ./solenv/gbuild/HelpTarget.mk
fi

abinfo "Autogen"
./autogen.sh \
--with-vendor="Anthon Open Source Community" \
--with-parallelism="${ABTHREADS}" \
--with-external-tar="$SRCDIR"/ext_sources_down \
--enable-split-app-modules \
--disable-fetch-external \
--enable-release-build \
--prefix=/usr --exec-prefix=/usr --sysconfdir=/etc \
--libdir=/usr/lib --mandir=/usr/share/man \
Expand Down Expand Up @@ -81,9 +80,11 @@ fi
--with-gdrive-client-id="1006183841565.apps.googleusercontent.com" \
--with-gdrive-client-secret="XN6oYWBv7O7w_heXB8TVuldr" \
--disable-dependency-tracking \
--without-system-mariadb

touch src.downloaded
--without-system-mariadb \
--enable-pch=full

abinfo "Build LibreOffice"
make build-nocheck

abinfo "Deploy files"
make distro-pack-install DESTDIR="$PKGDIR"
18 changes: 0 additions & 18 deletions extra-productivity/libreoffice/autobuild/list

This file was deleted.

9 changes: 0 additions & 9 deletions extra-productivity/libreoffice/autobuild/patch
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,3 @@ export PATH="${SRCDIR}:$PATH"
for i in autobuild/patches/*; do
patch -Np1 -i $i
done

mkdir ext_sources_down

pushd ext_sources_down
for i in `cat ../autobuild/list`; do
# DO NOT USE axel
wget -c $i
done
popd