PKGBUILDs/extra/libreoffice-still/PKGBUILD

421 lines
18 KiB
Bash
Raw Normal View History

2014-04-19 20:17:29 +00:00
# Maintainer: AndyRTR <andyrtr@archlinux.org>
2022-09-08 18:46:26 +00:00
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2014-04-19 20:17:29 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2017-08-01 12:56:49 +00:00
# - disable firebird until libfbclient is updated
2017-09-23 00:24:23 +00:00
# - specify a US mirror
2022-02-02 18:35:21 +00:00
# - remove --enable-lto from configure
2014-04-19 20:17:29 +00:00
2016-01-16 19:20:09 +00:00
highmem=1
2014-04-19 20:27:25 +00:00
2016-08-05 00:08:11 +00:00
# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
# Note: These are for Arch Linux use ONLY. For your own distribution, please
# get your own set of keys. Feel free to contact foutrelis@archlinux.org for
# more information.
_google_default_client_id=413772536636.apps.googleusercontent.com
_google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4
2015-02-04 16:38:57 +00:00
pkgbase=libreoffice-still
pkgname=('libreoffice-still-sdk' 'libreoffice-still')
2023-12-08 00:25:26 +00:00
_LOver=7.5.9.2
pkgver=7.5.9
pkgrel=1
2017-11-17 23:28:26 +00:00
arch=('x86_64')
2014-04-19 20:17:29 +00:00
license=('LGPL3')
2019-02-10 04:05:58 +00:00
url="https://www.libreoffice.org/"
2023-01-22 20:31:17 +00:00
makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python' 'libwpd>=0.9.2' 'libwps'
2015-02-04 16:38:57 +00:00
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
2018-08-18 15:50:17 +00:00
'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu'
2015-02-04 16:38:57 +00:00
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
2018-08-20 18:15:53 +00:00
'libmspub' 'harfbuzz-icu' 'nss' 'hicolor-icon-theme'
2023-08-21 15:21:35 +00:00
'gst-plugins-base-libs' 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'ant'
2023-11-04 15:13:29 +00:00
'gperf' 'gtk3' 'gtk4' 'qt5-base' 'plasma-framework5' 'qt6-base' 'cppunit' 'beanshell' 'clucene'
2021-02-03 14:03:47 +00:00
'junit' 'libmythes' 'libwpg' 'java-environment=11' 'postgresql-libs' 'mariadb-libs' 'libgl'
2023-08-23 22:48:02 +00:00
'bluez-libs' 'gdb' 'doxygen' 'libatomic_ops' #'mdds'
2023-02-02 13:38:23 +00:00
'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 'libpagemaker' 'glm'
2023-12-03 15:16:32 +00:00
'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' # 'liborcus'
'libexttextcat' 'gobject-introspection' 'libcmis' # 'libfbclient'
2023-02-02 13:38:23 +00:00
'libtommath' 'libzmf' 'xmlsec' 'rxvt-unicode' 'gpgme' 'libwebp'
2019-02-10 04:05:58 +00:00
'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice' 'boost' 'libnumbertext'
2023-02-02 13:38:23 +00:00
'abseil-cpp' 'clang' 'zxing-cpp'
2021-08-21 14:52:54 +00:00
'libffi' 'box2d' 'git'
2018-08-18 15:50:17 +00:00
)
2022-02-02 18:35:21 +00:00
options=('!lto') # using --enable-lto (for parallel link-time optimization)
2022-09-19 01:32:10 +00:00
_mirror="https://ftp.osuosl.org/pub/tdf/libreoffice/src/${pkgver}"
2016-12-17 00:53:54 +00:00
#_mirror="https://dev-builds.libreoffice.org/pre-releases/src"
2019-08-14 23:58:01 +00:00
_additional_source_url="https://dev-www.libreoffice.org/src"
_additional_source_url2="https://dev-www.libreoffice.org/extern"
2014-08-21 12:42:19 +00:00
source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
2014-04-19 20:17:29 +00:00
${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
2018-02-02 13:50:04 +00:00
${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip # keep old bundled version, new system version ftbs
2014-04-19 20:17:29 +00:00
${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
2022-02-02 18:35:21 +00:00
${_additional_source_url}/language-subtag-registry-2021-03-05.tar.bz2
2015-08-09 10:44:47 +00:00
${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
2018-08-18 15:50:17 +00:00
${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
2023-08-21 15:21:35 +00:00
${_additional_source_url}/pdfium-5778.tar.bz2
2021-02-03 14:03:47 +00:00
${_additional_source_url}/dtoa-20180411.tgz
2019-02-10 04:05:58 +00:00
${_additional_source_url}/lxml-4.1.1.tgz
2023-02-02 13:38:23 +00:00
${_additional_source_url}/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz
${_additional_source_url}/dragonbox-1.1.3.tar.gz
2023-08-23 22:48:02 +00:00
${_additional_source_url}/liborcus-0.17.2.tar.bz2
${_additional_source_url}/mdds-2.0.3.tar.bz2
2017-08-01 12:56:49 +00:00
${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar # for test suite
2019-08-14 23:58:01 +00:00
${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar # for test suite
2021-08-21 14:52:54 +00:00
${_additional_source_url2}/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf
2015-08-09 10:44:47 +00:00
${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
2014-04-19 20:17:29 +00:00
make-pyuno-work-with-system-wide-module-install.diff
2023-08-21 15:21:35 +00:00
623ea5c.diff
2023-12-03 15:16:32 +00:00
fix-build-against-system-libxml-2.12.diff
2023-02-02 13:38:23 +00:00
soffice-template.desktop.in
2021-08-21 14:52:54 +00:00
libreoffice-still.sh libreoffice-still.csh)
2019-02-10 04:05:58 +00:00
noextract=(35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
2018-08-18 15:50:17 +00:00
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
2022-02-02 18:35:21 +00:00
language-subtag-registry-2021-03-05.tar.bz2
2018-08-18 15:50:17 +00:00
17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
2023-08-21 15:21:35 +00:00
pdfium-5778.tar.bz2
2021-02-03 14:03:47 +00:00
dtoa-20180411.tgz
2019-02-10 04:05:58 +00:00
lxml-4.1.1.tgz
2023-02-02 13:38:23 +00:00
skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz
dragonbox-1.1.3.tar.gz
2023-08-23 22:48:02 +00:00
liborcus-0.17.2.tar.bz2
mdds-2.0.3.tar.bz2
2018-08-18 15:50:17 +00:00
8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar # for test suite
2019-08-14 23:58:01 +00:00
odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar # for test suite
2021-08-21 14:52:54 +00:00
f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf
2018-08-18 15:50:17 +00:00
185d60944ea767075d27247c3162b3bc-unowinreg.dll
)
2016-02-12 19:16:24 +00:00
validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build Team (CODE SIGNING KEY) <build@documentfoundation.org>
2023-12-08 00:25:26 +00:00
sha256sums=('372a7a131c940d0984c4fdeb5e03adc389a520a6adc397b649d3f267ad1188d6'
2016-12-01 13:57:13 +00:00
'SKIP'
2023-12-08 00:25:26 +00:00
'a391cb8d546eb0f4c718e9876a8ec2646130b977d592b0e27c467d0de32e31f5'
2016-12-01 13:57:13 +00:00
'SKIP'
2023-12-08 00:25:26 +00:00
'67bbfc017a334d93274b969d22f4814f5f29d78af2c386deae627c19d918aff2'
2016-12-01 13:57:13 +00:00
'SKIP'
2023-02-02 13:38:23 +00:00
'a49a58e8070ec111cc40efc9cdab32e8a1894d6a7788319306ccc461128e87c0'
2016-12-01 13:57:13 +00:00
'1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753'
'75823776fb51a9c526af904f1503a7afaaab900fba83eda64f8a41073724c870'
'983941d31ee8d366085cadf28db75eb1f5cb03ba1e5853b98f12f7f51c63b776'
2022-02-02 18:35:21 +00:00
'ce80e8face06bf2ada363e0c159e3f990c4116fdae9232ca43e6369aa82bf16a'
2016-12-01 13:57:13 +00:00
'd30b13f4ba2e3b6a2d4f020c0dee0a9fb9fc6fbcc2d561f36b78da4bf3802370'
2018-08-18 15:50:17 +00:00
'1b5b24f7bc543c0362b667692f78db8bab4ed6dafc6172f104d0bd3757d8a133'
'233f66e8d25c5dd971716d4200203a612a407649686ef3b52075d04b4c9df0dd'
2023-08-21 15:21:35 +00:00
'b1052ff24e9ffb11af017c444bb0f6ad508d64c9a0fb88cacb0e8210245dde06'
2021-02-03 14:03:47 +00:00
'0082d0684f7db6f62361b76c4b7faba19e0c7ce5cb8e36c4b65fea8281e711b4'
2019-02-10 04:05:58 +00:00
'940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a5cfd0f40e'
2022-02-02 18:35:21 +00:00
'acb85cedafa10ce106b1823fb236b1b3e5d942a5741e8f8435cc8ccfec0afe76'
2023-02-02 13:38:23 +00:00
'c094a6247e44104beaaa0d00c825beb6baf1a8e532dc22214747495317a65bd9'
'09d63b05e9c594ec423778ab59b7a5aa1d76fdd71d25c7048b0258c4ec9c3384'
2023-08-23 22:48:02 +00:00
'2a86c405a5929f749b27637509596421d46805753364ab258b035fd01fbde143'
'9771fe42e133443c13ca187253763e17c8bc96a1a02aec9e1e8893367ffa9ce5'
2017-08-01 12:56:49 +00:00
'f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770'
2019-08-14 23:58:01 +00:00
'984f2a479df79e27e7b01a5815ac53ae64e07746b882262d8a64566494515504'
2021-08-21 14:52:54 +00:00
'f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140'
2016-12-01 13:57:13 +00:00
'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
2017-09-03 17:35:20 +00:00
'c463654a73ecfbc242ff109726fb4faecdbfb3d91affafe919b24bea65afb563'
2023-08-21 15:21:35 +00:00
'440c9af5f3d1213d8ed7177282380f25cbc981cabc8b590dcb777aaae84178e5'
2023-12-03 15:16:32 +00:00
'793a52abff29b3db51a1db9686b561911b9b3de70bd6dd02bbc1d78fcd960648'
2020-01-31 01:18:47 +00:00
'd0be8099cbee3c9dfda694a828149b881c345b204ab68826f317580aafb50879'
2020-08-23 18:15:49 +00:00
'cd1b25ff390e436c6bffa65c6e12382236e3ccbf8d3aae51b1b59bcaed79fd8a'
2023-02-02 13:38:23 +00:00
'b43ed267643fc5ced803dca010427b12b1f10db485173ccb19efb3395e60c82e'
'66f2cb5d2ff9909ee9633aea73d5306fc8c4ff358fa526f45d9994210d3e23ff')
2022-02-03 00:08:49 +00:00
2014-04-19 20:17:29 +00:00
prepare() {
2016-08-05 00:08:11 +00:00
2015-02-04 16:38:57 +00:00
cd libreoffice-$_LOver
2014-04-19 20:17:29 +00:00
# move external sources into place
2019-10-06 15:24:44 +00:00
mkdir "${srcdir}"/ext_sources && pushd "${srcdir}"/ext_sources
2014-04-19 20:17:29 +00:00
for source in "${noextract[@]}"; do
2019-10-06 15:24:44 +00:00
ln -s "${srcdir}"/$source .
2014-04-19 20:17:29 +00:00
done
popd
2017-02-04 18:32:40 +00:00
2015-02-04 16:38:57 +00:00
# unowinreg.dll must be a file not a symlink or the result will become a broken symlink
# /usr/share/libreoffice/sdk/classes/win/unowinreg.dll -> /build/libreoffice/src/185d60944ea767075d27247c3162b3bc-unowinreg.dll
2019-10-06 15:24:44 +00:00
rm "${srcdir}"/ext_sources/185d60944ea767075d27247c3162b3bc-unowinreg.dll
cp -f "${srcdir}"/185d60944ea767075d27247c3162b3bc-unowinreg.dll "${srcdir}"/ext_sources
2014-04-19 20:17:29 +00:00
2017-08-01 12:56:49 +00:00
# fix not upstreamable pyuno paths - FS#54250
2019-10-06 15:24:44 +00:00
patch -Np1 -i "${srcdir}"/make-pyuno-work-with-system-wide-module-install.diff
2014-08-21 12:42:19 +00:00
2023-08-21 15:21:35 +00:00
# fix build - https://gerrit.libreoffice.org/c/core/+/145421
patch -Np1 -i "${srcdir}"/623ea5c.diff
2023-02-02 13:38:23 +00:00
2023-12-03 15:16:32 +00:00
# fix build with libxml2 2.12
patch -Np1 -i "${srcdir}"/fix-build-against-system-libxml-2.12.diff
2014-04-19 20:17:29 +00:00
#use the CFLAGS but remove the LibO overridden ones
for i in $CFLAGS; do
case "$i" in
-O?|-pipe|-Wall|-g|-fexceptions) continue;;
esac
2015-02-04 16:38:57 +00:00
ARCH_FLAGS="$ARCH_FLAGS $i"
2014-04-19 20:17:29 +00:00
done
}
build() {
2015-02-04 16:38:57 +00:00
cd libreoffice-$_LOver
2014-04-19 20:17:29 +00:00
2015-06-07 17:48:11 +00:00
# strip -s from Makeflags in case you use it to shorten build logs
_MAKEFLAGS=${MAKEFLAGS/-s/}
2018-08-18 15:50:17 +00:00
2023-02-02 13:38:23 +00:00
# Build only minimal debug info to reduce size (~1.2GB -> ~225MB)
CFLAGS=${CFLAGS/-g /-g1 }
CXXFLAGS=${CXXFLAGS/-g /-g1 }
2018-08-18 15:50:17 +00:00
# http://site.icu-project.org/download/61#TOC-Migration-Issues
CPPFLAGS+=' -DU_USING_ICU_NAMESPACE=1'
2023-02-02 13:38:23 +00:00
# fix build with qt6 expecting libexec path
export qt6_libexec_dirs="/usr/lib/qt6"
2021-02-03 14:03:47 +00:00
./autogen.sh --with-extra-buildid="${pkgver}-${pkgrel}" \
2017-02-04 18:32:40 +00:00
--with-vendor="Arch Linux" \
2014-04-19 20:17:29 +00:00
--enable-split-app-modules \
2015-06-07 17:48:11 +00:00
--with-parallelism=${_MAKEFLAGS/-j/} \
2014-04-19 20:17:29 +00:00
--with-external-tar="${srcdir}/ext_sources" \
--disable-fetch-external \
--enable-release-build \
--prefix=/usr --exec-prefix=/usr --sysconfdir=/etc \
--libdir=/usr/lib --mandir=/usr/share/man \
--with-lang="" \
2019-02-10 04:05:58 +00:00
--with-help=html \
2015-06-07 17:48:11 +00:00
--disable-avahi \
2014-04-19 20:17:29 +00:00
--enable-dbus \
--enable-evolution2\
--enable-gio\
2019-02-10 04:05:58 +00:00
--enable-gtk3-kde5 \
2020-08-23 18:15:49 +00:00
--enable-kf5 \
2019-08-14 23:58:01 +00:00
--enable-qt5 \
2023-02-02 13:38:23 +00:00
--enable-qt6 \
2016-08-05 00:08:11 +00:00
--enable-gtk3 \
2023-02-02 13:38:23 +00:00
--enable-gtk4 \
2017-02-04 18:32:40 +00:00
--enable-introspection \
2014-04-19 20:17:29 +00:00
--enable-openssl \
--enable-odk\
--enable-python=system \
--enable-scripting-beanshell \
--enable-scripting-javascript \
2018-02-02 13:50:04 +00:00
--disable-dconf \
--disable-report-builder \
2014-04-19 20:17:29 +00:00
--enable-ext-wiki-publisher \
--enable-ext-nlpsolver \
--without-fonts\
2023-12-03 15:16:32 +00:00
--with-system-libxml \
2015-02-04 16:38:57 +00:00
--with-system-libcdr \
2023-08-23 22:48:02 +00:00
--without-system-mdds\
2014-04-19 20:17:29 +00:00
--without-myspell-dicts \
2015-02-04 16:38:57 +00:00
--with-system-libvisio \
2023-12-03 15:16:32 +00:00
--with-system-libcmis \
2015-02-04 16:38:57 +00:00
--with-system-libmspub \
2016-08-05 00:08:11 +00:00
--with-system-libexttextcat \
2023-08-23 22:48:02 +00:00
--without-system-orcus \
2016-08-05 00:08:11 +00:00
--with-system-liblangtag \
2015-02-04 16:38:57 +00:00
--with-system-libodfgen \
2015-08-09 10:44:47 +00:00
--with-system-libmwaw \
2015-02-04 16:38:57 +00:00
--with-system-libetonyek \
2018-02-02 13:50:04 +00:00
--with-system-libfreehand \
2017-08-01 12:56:49 +00:00
--disable-firebird-sdbc \
2023-02-02 13:38:23 +00:00
--with-system-zxing \
2017-08-01 12:56:49 +00:00
--with-system-libtommath \
2014-05-09 15:46:20 +00:00
--with-system-libatomic-ops \
2015-08-09 10:44:47 +00:00
--with-system-libebook \
--with-system-libabw \
--with-system-coinmp \
2014-04-19 20:17:29 +00:00
--with-system-dicts \
--with-external-dict-dir=/usr/share/hunspell \
--with-external-hyph-dir=/usr/share/hyphen \
--with-external-thes-dir=/usr/share/mythes \
--with-system-beanshell \
--with-system-cppunit\
--with-system-graphite\
2018-08-20 18:15:53 +00:00
--with-system-glm \
2019-02-10 04:05:58 +00:00
--with-system-libnumbertext \
2015-02-04 16:38:57 +00:00
--with-system-libwpg \
2016-02-12 19:16:24 +00:00
--with-system-libwps \
2014-04-19 20:17:29 +00:00
--with-system-redland\
2017-08-01 12:56:49 +00:00
--with-system-libzmf \
2022-08-18 23:19:34 +00:00
--with-system-gpgmepp \
2018-02-02 13:50:04 +00:00
--with-system-libstaroffice \
2014-10-20 19:04:27 +00:00
--with-jdk-home="/usr/lib/jvm/default" \
2018-10-30 00:15:47 +00:00
--with-ant-home="/usr/share/ant"\
2019-02-10 04:05:58 +00:00
--with-system-boost\
2018-08-18 15:50:17 +00:00
--with-system-icu \
2015-02-04 16:38:57 +00:00
--with-system-cairo \
--with-system-libs \
--with-system-mythes \
--with-system-headers \
2014-04-19 20:17:29 +00:00
--without-system-hsqldb \
--with-system-clucene \
2023-02-02 13:38:23 +00:00
--without-system-dragonbox \
--without-system-libfixmath \
2016-08-05 00:08:11 +00:00
--with-gdrive-client-id=${_google_default_client_id} \
--with-gdrive-client-secret=${_google_default_client_secret} \
2017-08-01 12:56:49 +00:00
--disable-dependency-tracking
2015-08-09 10:44:47 +00:00
2014-04-19 20:17:29 +00:00
touch src.downloaded
2023-02-02 13:38:23 +00:00
make build
2015-02-04 16:38:57 +00:00
2019-10-06 15:24:44 +00:00
mkdir "${srcdir}"/fakeinstall
make DESTDIR="${srcdir}"/fakeinstall distro-pack-install
2014-04-19 20:17:29 +00:00
}
#check() {
2019-10-06 15:24:44 +00:00
# cd "${srcdir}"/build
2014-04-19 20:17:29 +00:00
# make check
#}
2014-08-21 12:42:19 +00:00
package_libreoffice-still-sdk() {
2015-02-04 16:38:57 +00:00
pkgdesc="Software Development Kit for LibreOffice maintenance branch"
depends=('libreoffice-still' 'gcc-libs' 'sh' 'make' 'zip' 'gcc' 'java-environment')
2015-08-09 10:44:47 +00:00
provides=('libreoffice-sdk')
2016-08-05 00:08:11 +00:00
conflicts=('libreoffice-fresh-sdk')
2014-04-19 20:17:29 +00:00
2015-02-04 16:38:57 +00:00
for dir in $(grep -h ^%dir libreoffice-$_LOver/file-lists/sdk{,_doc}_list.txt); do
2019-10-06 15:24:44 +00:00
install -dm755 "${pkgdir}"/${dir/\%dir/}
2015-02-04 16:38:57 +00:00
done
2014-04-19 20:17:29 +00:00
2015-02-04 16:38:57 +00:00
for file in $(grep -h -v ^%dir libreoffice-$_LOver/file-lists/sdk{,_doc}_list.txt); do
dirname=$(dirname $file)
2019-10-06 15:24:44 +00:00
[[ -d "${pkgdir}"/$dirname ]] || install -dm755 "${pkgdir}"/$dirname
mv "${srcdir}"/fakeinstall/${file} "${pkgdir}"/$file
2015-02-04 16:38:57 +00:00
done
2014-04-19 20:17:29 +00:00
2015-02-04 16:38:57 +00:00
# fix environment path to keep compatibility with other java-environments
sed -i -e "s:\/usr\/lib\/jvm\/java-7-openjdk:\$J2SDKDIR:" \
2019-10-06 15:24:44 +00:00
"${pkgdir}"/usr/lib/libreoffice/sdk/setsdkenv_unix.sh
2014-04-19 20:17:29 +00:00
2015-02-04 16:38:57 +00:00
# fix permissions
2019-10-06 15:24:44 +00:00
find "${pkgdir}"/usr/lib/libreoffice/sdk/examples -type f -exec chmod -x {} +
2016-02-12 19:16:24 +00:00
# add LibreOfficeKit headers; FS#48066
2019-10-06 15:24:44 +00:00
install -dm755 "${pkgdir}"/usr/include/LibreOfficeKit
install -v -m644 "${srcdir}"/libreoffice-$_LOver/include/LibreOfficeKit/* "${pkgdir}"/usr/include/LibreOfficeKit
2014-04-19 20:17:29 +00:00
}
2015-02-04 16:38:57 +00:00
package_libreoffice-still() {
pkgdesc="LibreOffice maintenance branch"
2023-01-22 20:31:17 +00:00
depends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python' 'libwpd>=0.9.2' 'libwps'
2019-02-10 04:05:58 +00:00
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl'
2018-08-18 15:50:17 +00:00
'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu'
2015-02-04 16:38:57 +00:00
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
2018-08-20 18:15:53 +00:00
'libmspub' 'harfbuzz-icu' 'nss' 'clucene' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'libpagemaker'
2017-02-04 18:32:40 +00:00
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
2023-12-03 15:16:32 +00:00
'liblangtag' 'libexttextcat' 'libwebp' 'libcmis' # 'libfbclient' 'liborcus'
2022-08-18 23:19:34 +00:00
'libtommath' 'libzmf' 'libatomic_ops' 'xmlsec' 'libnumbertext' 'gpgme'
2021-08-21 14:52:54 +00:00
'libfreehand' 'libstaroffice' 'libepubgen' 'libqxp' 'libepoxy' 'box2d'
2023-08-21 15:21:35 +00:00
'zxing-cpp' 'xdg-utils'
'libldap' 'fontconfig' 'zlib' 'libpng' 'freetype2' 'raptor' 'libxml2'
'cairo' 'libx11' 'expat' 'glib2' 'boost-libs' 'libtiff' 'dbus' 'glibc'
'librevenge' 'libxext' 'openjpeg2' )
2015-02-04 16:38:57 +00:00
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into other vector formats'
'libmythes: for use in thesaurus'
2016-08-23 21:14:52 +00:00
'beanshell: interactive java -- good for prototyping/macros'
2015-02-04 16:38:57 +00:00
'libwpg: library for importing and converting WordPerfect Graphics format'
'sane: for scanner access'
'unixodbc: adds ODBC database support'
'gst-plugins-base-libs: for multimedia content, e.g. in Impress'
'libpaper: takes care of papersize'
'postgresql-libs: for postgresql-connector'
2019-08-14 23:58:01 +00:00
'mariadb-libs: for mysql-connector'
2015-08-09 10:44:47 +00:00
'coin-or-mp: required by the Calc solver'
2019-02-10 04:05:58 +00:00
'gtk3: for GTK3 integration'
2023-02-02 13:38:23 +00:00
'gtk4: for GTK4 integration (experimental)'
2023-10-01 17:25:59 +00:00
'kio5: for KF5 KDE desktop integration'
2023-08-21 15:21:35 +00:00
'qt6-base: for Qt6 desktop integration')
2015-02-04 16:38:57 +00:00
backup=(etc/libreoffice/sofficerc
etc/libreoffice/bootstraprc
etc/libreoffice/psprint.conf
etc/profile.d/libreoffice-still.sh
etc/profile.d/libreoffice-still.csh)
provides=('libreoffice' 'libreoffice-en-US')
2015-08-09 10:44:47 +00:00
conflicts=('libreoffice-fresh')
2015-02-04 16:38:57 +00:00
2019-10-06 15:24:44 +00:00
mv fakeinstall/* "${pkgdir}"/
2015-02-04 16:38:57 +00:00
# put configuration files into place
2019-10-06 15:24:44 +00:00
install -dm755 "${pkgdir}"/etc/libreoffice
install -m644 "${pkgdir}"/usr/lib/libreoffice/program/{bootstraprc,sofficerc} \
"${pkgdir}"/etc/libreoffice/
install -m644 "${pkgdir}"/usr/lib/libreoffice/share/psprint/psprint.conf \
"${pkgdir}"/etc/libreoffice/
2015-02-04 16:38:57 +00:00
# install dummy links to make them found by LibO
2019-10-06 15:24:44 +00:00
cd "${pkgdir}"/usr/lib/libreoffice/program/
2015-02-04 16:38:57 +00:00
ln -vsf /etc/libreoffice/{bootstraprc,sofficerc} .
2019-10-06 15:24:44 +00:00
cd "${pkgdir}"/usr/lib/libreoffice/share/psprint/
2015-02-04 16:38:57 +00:00
ln -vsf /etc/libreoffice/psprint.conf .
# allow to preset desired VLC
2019-10-06 15:24:44 +00:00
install -dm755 "${pkgdir}"/etc/profile.d
install -m644 "${srcdir}"/libreoffice-still.{sh,csh} "${pkgdir}"/etc/profile.d/
2015-02-04 16:38:57 +00:00
# make pyuno find its modules
2023-01-22 20:31:17 +00:00
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
install -dm755 "${pkgdir}"/$site_packages
2015-02-04 16:38:57 +00:00
ln -svf /usr/lib/libreoffice/program/uno.py \
2023-01-22 20:31:17 +00:00
"${pkgdir}"/$site_packages/uno.py
2015-02-04 16:38:57 +00:00
ln -svf /usr/lib/libreoffice/program/unohelper.py \
2023-01-22 20:31:17 +00:00
"${pkgdir}"/$site_packages/unohelper.py
2018-08-18 15:50:17 +00:00
2017-02-11 00:43:17 +00:00
# add a symlink required for gnome-documents; FS#51887
# https://lists.freedesktop.org/archives/libreoffice/2016-March/073787.html
ln -svf /usr/lib/libreoffice/program/liblibreofficekitgtk.so \
2019-10-06 15:24:44 +00:00
"${pkgdir}"/usr/lib/liblibreofficekitgtk.so
2017-02-11 00:43:17 +00:00
2015-02-04 16:38:57 +00:00
# cleanup
2019-10-06 15:24:44 +00:00
rm -rf "${pkgdir}"/usr/share/libreoffice/sdk
2015-02-04 16:38:57 +00:00
# add application descriptions
2019-10-06 15:24:44 +00:00
install -dm755 "${pkgdir}"/usr/share/metainfo
install -v -m644 "${srcdir}"/libreoffice-$_LOver/sysui/desktop/appstream-appdata/*.xml \
"${pkgdir}"/usr/share/metainfo
2019-10-07 14:32:49 +00:00
2020-01-31 01:18:47 +00:00
# add kde filemanager templates; FS#61662 - file taken from Debian
install -dm755 "${pkgdir}"/usr/share/templates/.source
install -v -m644 "${srcdir}"/libreoffice-$_LOver/extras/source/shellnew/soffice.* \
"${pkgdir}"/usr/share/templates/.source
cat "${srcdir}"/soffice-template.desktop.in \
| sed -e "s/@APP@/Writer/" \
| sed -e "s/@EXT@/odt/" \
| sed -e "s/@TYPE@/text/" \
> "${pkgdir}"/usr/share/templates/soffice.odt.desktop
cat "${srcdir}"/soffice-template.desktop.in \
| sed -e "s/@APP@/Calc/" \
| sed -e "s/@EXT@/ods/" \
| sed -e "s/@TYPE@/spreadsheet/" \
> "${pkgdir}"/usr/share/templates/soffice.ods.desktop
cat "${srcdir}"/soffice-template.desktop.in \
| sed -e "s/@APP@/Impress/" \
| sed -e "s/@EXT@/odp/" \
| sed -e "s/@TYPE@/presentation/" \
> "${pkgdir}"/usr/share/templates/soffice.odp.desktop
cat "${srcdir}"/soffice-template.desktop.in \
| sed -e "s/@APP@/Draw/" \
| sed -e "s/@EXT@/odg/" \
| sed -e "s/@TYPE@/drawing/" \
> "${pkgdir}"/usr/share/templates/soffice.odg.desktop
2019-10-07 14:32:49 +00:00
# make all i18n lang packages with help section ('1') available to
# fix "F1" not opening translated offline help opening in browser
# see also /usr/lib/libreoffice/help/en-US/langnames.js
echo "var languagesSet = new Set(['en-US','am','ar','ast','bg','bn',\
'bn-IN','bo','bs','ca','ca-valencia','cs','da','de','dz','el',\
'en-GB','en-ZA','eo','es','et','eu','fi','fr','gl','gu','he',\
'hi','hr','hu','id','is','it','ja','ka','km','ko','lo','lt','lv',\
'mk','nb','ne','nl','nn','om','pl','pt','pt-BR','ro','ru','si',\
'sid','sk','sl','sq','sv','ta','tg','tr','ug','uk','vi','zh-CN','zh-TW'])" \
> "${pkgdir}"/usr/lib/libreoffice/help/languages.js
2014-04-19 20:17:29 +00:00
}