Package Details: libreoffice-dev-bin 7.6.1.2-1

Git Clone URL: https://aur.archlinux.org/libreoffice-dev-bin.git (read-only, click to copy)
Package Base: libreoffice-dev-bin
Description: LibreOffice development branch
Upstream URL: https://www.libreoffice.org/
Licenses: LGPL3
Provides: libreoffice, libreoffice-en-US
Submitter: twa022
Maintainer: twa022
Last Packager: twa022
Votes: 19
Popularity: 0.000011
First Submitted: 2016-12-16 03:01 (UTC)
Last Updated: 2023-09-13 12:44 (UTC)

Dependencies (8)

Required by (49)

Sources (1)

Latest Comments

1 2 3 Next › Last »

lobaluna commented on 2023-06-01 00:12 (UTC)

Hi, I know that you do a great job. Thanks for that!

The libreoffice-dev-qtz language pack is missing for version 7.6.0.0 alpha1. This packages is the one you use to search for KeyID strings in weblate and help with the localization of LibreOffice.

Hope you can put it in AUR as soon as possible. And thanks again!

blackout commented on 2022-12-06 16:41 (UTC)

7.5.0.0.alpha1 https://pastebin.com/9kSevUKu

bittin commented on 2022-08-01 13:23 (UTC)

7.4 RC2 PKGBUILD: https://pastebin.com/w6MA6YQk

bittin commented on 2022-06-15 12:37 (UTC)

https://pastebin.com/6P8A1YQR Libreoffice 7.4 Beta 1 PKGBUILD

bittin commented on 2022-01-18 11:37 (UTC)

7.3 RC2 PKGBUILD: https://pastebin.com/BUGdXvgJ

bittin commented on 2021-03-29 15:15 (UTC)

Todays Update: https://pastebin.com/VxC3rjd5

twa022 commented on 2020-06-09 15:10 (UTC)

@u66sa: I created a package for the language packs (https://aur.archlinux.org/pkgbase/libreoffice-dev-i18n/). Be sure to edit the PKGBUILD to only build the language packs you want (otherwise you will build all 117.

u666sa commented on 2020-06-03 10:57 (UTC)

I got stuck like absolute newb when it come to installing language and help pack.. Please create language pack packages in AUR, at least Russian.

spooky commented on 2020-04-27 01:33 (UTC)

https://dev-builds.libreoffice.org/daily/master/current.html

Alda commented on 2020-01-11 22:44 (UTC)

Fixed the PKGBUILD with that patch :

diff --git a/PKGBUILD b/PKGBUILD
index 1d15cfe..91aa648 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -18,8 +18,12 @@ optdepends=('java-runtime:          adds java support'
             'kio:                   for Qt5 integration')
 provides=('libreoffice' 'libreoffice-en-US')

-source=("https://dev-builds.libreoffice.org/pre-releases/rpm/x86_64/${_pkgnamefmt}_${_LOver}_Linux_x86-64_rpm.tar.gz")
-sha256sums=('991579b5cdcac9c9a34452747a451ffbad1812f2f96ff3c4cbf3da72affac41b')
+source=(
+       "https://dev-builds.libreoffice.org/pre-releases/rpm/x86_64/${_pkgnamefmt}_${_LOver}_Linux_x86-64_rpm.tar.gz"
+       "https://dev-builds.libreoffice.org/pre-releases/rpm/x86_64/${_pkgnamefmt}_${_LOver}_Linux_x86-64_rpm.tar.gz.asc"
+     )
+sha256sums=(SKIP SKIP)
+validpgpkeys=(F434A1EFAFEEAEA3 C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3)

 package() {
    find "${srcdir}/${_pkgnamefmt}_${_LOver}"*/RPMS/*rpm -exec bsdtar -x -f '{}' -C "${pkgdir}" \;

It uses LibreOffice provided signature verification instead of relying upon sha256sum.