freeoffice

maintainer Muflone · 62 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The source is downloaded from softmaker.net, the official vendor's domain, which is not on standard whitelists but is legitimate for this software; the package builds from official prebuilt binaries, which is normal for this type of proprietary software, and no malicious behavior is present.

Triggered rules

LOW AI review downgraded a static finding llm_review

The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The source is downloaded from softmaker.net, the official vendor's domain, which is not on standard whitelists but is legitimate for this software; the package builds from official prebuilt binaries, which is normal for this type of proprietary software, and no malicious behavior is present.

1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM source=() URL on a non-standard host source_untrusted_domain

One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).

  • PKGBUILD:14 source=("http://www.softmaker.net/down/softmaker-${pkgname}-2024-${pkgver}-amd64.tgz"

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Muflone http://www.muflone.com/contacts/english/
2
3pkgname=freeoffice
4pkgver=1234
5pkgrel=1
6pkgdesc="A complete, reliable, lightning-fast and Microsoft Office-compatible office suite with a word processor, spreadsheet, and presentation graphics software."
7arch=('x86_64')
8url="http://www.freeoffice.com/"
9license=('LicenseRef-custom')
10depends=('libxrandr' 'libgl' 'xdg-utils' 'gtk-update-icon-cache'
11 'desktop-file-utils' 'curl')
12makedepends=('chrpath')
13install="${pkgname}.install"
14source=("http://www.softmaker.net/down/softmaker-${pkgname}-2024-${pkgver}-amd64.tgz"
15 "${pkgname}-textmaker"
16 "${pkgname}-planmaker"
17 "${pkgname}-presentations"
18 "${pkgname}-textmaker.desktop"
19 "${pkgname}-planmaker.desktop"
20 "${pkgname}-presentations.desktop")
21sha256sums=('ab94147af912c5d87adb664c8706cee381cb268c29834bf0bfd75eee174e5104'
22 '0437328f3fddf93e18ad3df270971802c2e0fcaf3f030588c1301767a968da69'
23 'c90e2575c71f03f0b627e4f6c70f437b9c40e5878bf9f553a4244b4a1f6dbd3c'
24 'e6bc7608e58f44b55654c5d1fc93d442a400de638e2cbc6d5a3b3a8fbceaa0e4'
25 '5068c61226553a04d7a9373e95fa77b0aac43b7abb45d17149464473162ebe47'
26 '0b167897477e0914fcbafc40d188977daaff6df3ebda38f80feeab33c51d4e1e'
27 '1c80fdb7cb4119cd08b892f033eb57a1b38bcc758f307c1621248009693f2f10')
28
29prepare() {
30 xz -d "freeoffice2024.tar.lzma"
31}
32
33build() {
34 [ -d "${pkgname}" ] && rm -rf "${pkgname}"
35 mkdir "${pkgname}"
36 tar x -f "freeoffice2024.tar" -C "${pkgname}"
37 # Remove insecure RPATH
38 cd "${pkgname}"
39 chrpath --delete "textmaker"
40 chrpath --delete "planmaker"
41 chrpath --delete "presentations"
42}
43
44package() {
45 # Install package files
46 install -d "${pkgdir}/usr/lib"
47 cp -r "${srcdir}/${pkgname}" "${pkgdir}/usr/lib"
48 # Installing license file
49 install -d "${pkgdir}/usr/share/licenses/${pkgname}"
50 ln -s "/usr/lib/${pkgname}/mime/copyright" "${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
51 # Install program executables
52 install -d "${pkgdir}/usr/bin"
53 install -m 755 -t "${pkgdir}/usr/bin" "${srcdir}/${pkgname}-planmaker"
54 install -m 755 -t "${pkgdir}/usr/bin" "${srcdir}/${pkgname}-textmaker"
55 install -m 755 -t "${pkgdir}/usr/bin" "${srcdir}/${pkgname}-presentations"
56 # Installing icons
57 for size in 16 32 48
58 do
59 install -d "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps"
60 ln -s "/usr/lib/${pkgname}/icons/pml_${size}.png" "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/${pkgname}-planmaker.png"
61 ln -s "/usr/lib/${pkgname}/icons/prl_${size}.png" "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/${pkgname}-presentations.png"
62 ln -s "/usr/lib/${pkgname}/icons/tml_${size}.png" "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/${pkgname}-textmaker.png"
63
64 install -d "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/mimetypes"
65 ln -s "/usr/lib/${pkgname}/icons/pmd_${size}.png" "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/mimetypes/application-x-pmd.png"
66 ln -s "/usr/lib/${pkgname}/icons/prd_${size}.png" "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/mimetypes/application-x-prd.png"
67 ln -s "/usr/lib/${pkgname}/icons/tmd_${size}.png" "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/mimetypes/application-x-tmd.png"
68 done
69 # Install desktop files
70 install -d "${pkgdir}/usr/share/applications"
71 install -m 755 -t "${pkgdir}/usr/share/applications" "${pkgname}-textmaker.desktop"
72 install -m 755 -t "${pkgdir}/usr/share/applications" "${pkgname}-planmaker.desktop"
73 install -m 755 -t "${pkgdir}/usr/share/applications" "${pkgname}-presentations.desktop"
74 # Installing mime file
75 install -d "${pkgdir}/usr/share/mime/packages"
76 install -m 644 -t "${pkgdir}/usr/share/mime/packages" "${srcdir}/${pkgname}/mime/softmaker-freeoffice24.xml"
77}
78

Scan history

Scanned at (UTC)SeverityRules
2026-08-03 00:08:14 LOW 2
2026-08-02 00:16:08 LOW 2
2026-08-01 00:11:18 LOW 2
2026-07-31 00:14:10 LOW 2
2026-07-30 00:17:23 LOW 2
2026-07-29 00:25:53 LOW 2
2026-07-28 00:07:28 LOW 2
2026-07-27 00:24:32 LOW 2
2026-07-26 00:07:32 LOW 2
2026-07-25 00:13:44 LOW 2
2026-07-24 00:02:28 LOW 2
2026-07-23 00:14:47 LOW 2
2026-07-22 00:29:32 LOW 2
2026-07-21 00:24:15 LOW 2
2026-07-20 00:19:49 LOW 2
2026-07-19 00:17:08 LOW 2
2026-07-18 00:14:48 LOW 2
2026-07-17 00:06:16 LOW 2
2026-07-16 00:05:41 LOW 2
2026-07-15 00:09:25 LOW 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion