how to install libreoffice 25.2 in freebsd14.2 ?

Dear all:
I have installed libreoffice 24.8.4 in my freebsd14.2. but now I want to upgrade 24.8.2 to 25.2 or fresh installation it . how to do that ? thanks.
 
Do a package query and see what version of libreoffice is on offer.

I subscribe to latest packages:
Code:
[tulloch.144] $ grep ABI /usr/local/etc/pkg/repos/FreeBSD.conf
FreeBSD: { url: "http://pkg0.syd.freebsd.org/${ABI}/latest", mirror_type: "NONE" }
and the port is at 25.2.0.3:
Code:
[tulloch.131] $ uname -a 
FreeBSD tulloch.oakes.consulting 14.2-RELEASE FreeBSD 14.2-RELEASE releng/14.2-n269506-c8918d6c7412 GENERIC amd64
[tulloch.132] $ pkg search libreoffice | grep "^libre"
libreoffice-25.2.0.3 Full integrated office productivity suite
libreoffice-i18n-25.2.0.3 Localized interface for libreoffice
If you see "25.2", all you have to do is sudo pkg install libreoffice.

If you don't then either wait for the required version to be released into the quarterly updates, or switch to the latest packages.
 
Back
Top