libttf
maintainer bradel
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
Source is a git clone from git.carlh.net (the project author's own server, associated with dcpomatic.com), building the project's own source code; the non-standard host is plausibly the project's official infrastructure, not a swappable personal file-sharing service.
Triggered rules
LOW
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 80%): Source is a git clone from git.carlh.net (the project author's own server, associated with dcpomatic.com), building the project's own source code; the non-standard host is plausibly the project's official infrastructure, not a swappable personal file-sharing service.
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=("${pkgname}-${pkgver}::git+https://git.carlh.net/git/${pkgname}.git#tag=v${pkgver}")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Benjamin Radel <aur@radel.tk>
2
# Maintainer: Markus Kalb <mk@filmkreis.tu-darmstadt.de>
3
# Contributor: Stefan Karner <stefan.karner@student.tuwien.ac.at>
4
pkgname=libttf
5
pkgver=0.0.7
6
pkgrel=1
7
pkgdesc="A small C++ library to render subtitles for Digital Cinema Packages with DCP-o-matic"
8
arch=('i686' 'x86_64')
9
url="https://www.dcpomatic.com"
10
license=('GPL-2.0-or-later')
11
depends=('boost-libs>=1.91.0' 'libstdc++' 'fmt')
12
makedepends=('git' 'python' 'boost>=1.91.0' 'gcc' 'pkg-config')
13
_cherrypicks=()
14
source=("${pkgname}-${pkgver}::git+https://git.carlh.net/git/${pkgname}.git#tag=v${pkgver}")
15
sha256sums=('6e5a1d83752d74b0ce191f01962eda40eafbea88a5c1217576f6f76e9d6914ae')
16
provides=('libttf-1.0.so')
17
18
prepare() {
19
cd "$srcdir/${pkgname}-${pkgver}"
20
### Cherry pick upstream commits (fixes and such) ###
21
for c in "${_cherrypicks[@]}"; do
22
echo "Applying commit ${c}"
23
git cherry-pick "${c}";
24
done
25
### Apply patches ###
26
for p in "${source[@]}"; do
27
if [[ "$p" =~ \.patch$ ]]; then
28
echo "Applying patch ${p##*/}"
29
patch -p1 -N -i "${srcdir}/${p##*/}"
30
fi
31
done
32
}
33
34
build() {
35
### Configure libdcp ###
36
cd "${srcdir}/${pkgname}-${pkgver}"
37
python waf configure --prefix=/usr
38
python waf build
39
}
40
41
package() {
42
cd "${srcdir}/${pkgname}-${pkgver}"
43
python waf install --destdir="$pkgdir"
44
cd "${pkgdir}"
45
if [ -d usr/lib64 ]
46
then
47
mv usr/lib64 usr/lib
48
fi
49
}
50
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 3 |
| 2026-08-02 00:16:08 | LOW | 3 |
| 2026-08-01 00:11:18 | LOW | 3 |
| 2026-07-31 00:14:10 | LOW | 3 |
| 2026-07-30 00:17:23 | LOW | 3 |
| 2026-07-29 17:15:54 | LOW | 3 |
| 2026-07-29 17:12:22 | MEDIUM | 2 |