mingw-w64-speexdsp
maintainer patlefort
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The source is a tarball from the project's official GitLab instance (gitlab.xiph.org), which is a legitimate host for the SpeexDSP project; building from official project sources is normal AUR packaging behavior.
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-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The source is a tarball from the project's official GitLab instance (gitlab.xiph.org), which is a legitimate host for the SpeexDSP project; building from official project sources is normal AUR packaging behavior.
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=("https://gitlab.xiph.org/xiph/speexdsp/-/archive/SpeexDSP-${pkgver}/speexdsp-SpeexDSP-${pkgver}.tar.gz")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Patrick Northon <northon_patrick3@yahoo.ca>
2
3
_pkgname=speexdsp
4
pkgname=mingw-w64-${_pkgname}
5
pkgver=1.2.1
6
pkgrel=1
7
pkgdesc="DSP library derived from Speex (mingw-w64)"
8
arch=(any)
9
url="https://gitlab.xiph.org/xiph/speexdsp"
10
license=("BSD")
11
makedepends=('mingw-w64-configure')
12
depends=('mingw-w64-crt')
13
options=('staticlibs' '!strip' '!buildflags')
14
source=("https://gitlab.xiph.org/xiph/speexdsp/-/archive/SpeexDSP-${pkgver}/speexdsp-SpeexDSP-${pkgver}.tar.gz")
15
sha256sums=('d17ca363654556a4ff1d02cc13d9eb1fc5a8642c90b40bd54ce266c3807b91a7')
16
17
_srcdir="${_pkgname}-SpeexDSP-${pkgver}"
18
_architectures="${MINGW_W64_ARCHS:-x86_64-w64-mingw32}"
19
20
prepare() {
21
cd "${_srcdir}"
22
./autogen.sh
23
}
24
25
build() {
26
cd "${_srcdir}"
27
for _arch in ${_architectures}; do
28
mkdir -p build-${_arch} && pushd build-${_arch}
29
${_arch}-configure --disable-examples ..
30
make
31
popd
32
done
33
}
34
35
package() {
36
for _arch in ${_architectures}; do
37
cd "${srcdir}/${_srcdir}/build-${_arch}"
38
make DESTDIR="$pkgdir" install
39
rm -r "$pkgdir"/usr/${_arch}/share
40
${_arch}-strip --strip-unneeded "$pkgdir"/usr/${_arch}/bin/*.dll
41
${_arch}-strip -g "$pkgdir"/usr/${_arch}/lib/*.a
42
done
43
}
44
Changes since previous scan
--- PKGBUILD @ 2026-06-19 19:07+++ PKGBUILD @ 2026-08-18 00:03@@ -15,7 +15,7 @@ sha256sums=('d17ca363654556a4ff1d02cc13d9eb1fc5a8642c90b40bd54ce266c3807b91a7') _srcdir="${_pkgname}-SpeexDSP-${pkgver}"-_architectures="i686-w64-mingw32 x86_64-w64-mingw32"+_architectures="${MINGW_W64_ARCHS:-x86_64-w64-mingw32}" prepare() { cd "${_srcdir}"Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 00:18:29 | LOW | 2 |
| 2026-08-16 19:33:38 | MEDIUM | 1 |
| 2026-06-19 19:07:35 | CLEAN | 2 |
| 2026-06-18 16:11:54 | MEDIUM | 1 |