# libreoffice - Office suite
# Generated from manifest.tsv by gen-ports.py. Edit the manifest, not this file,
# unless the package needs something the template cannot express - in which case
# drop a `recipe.local` beside it and it will be preserved.
name=libreoffice
version=26.2.0.3
release=1
desc="Office suite"
url="https://libreoffice.org/"
license="MPL-2.0"
depend="glibc gtk3 poppler icu lcms2 libxml2 nss java-openjdk boost"
makedepend="python nasm"
source="https://download.documentfoundation.org/libreoffice/src/26.2.0.3/libreoffice-26.2.0.3.tar.xz"
sha256="SKIP"

build() {
	cd "libreoffice-26.2.0.3"
	# Not every configure script accepts the same options - sqlite rejects
	# --disable-nls outright, for instance - so only pass the ones this one
	# actually advertises. Guessing wrong fails the whole build.
	_opts="--prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib"
	_help=$(./configure --help 2>/dev/null)
	case "$_help" in *--disable-static*)  _opts="$_opts --disable-static" ;; esac
	case "$_help" in *--disable-nls*)     _opts="$_opts --disable-nls" ;; esac
	# shellcheck disable=SC2086
	./configure $_opts
	make -j"$JOBS"
}

package() {
	cd "libreoffice-26.2.0.3"
	make DESTDIR="$pkgdir" install
}
