libfaxtiff-git
maintainer lnicoara
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package builds a static library from its own Git repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
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
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds a static library from its own Git repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: Liviu Nicoara <lnicoara at thinkoid dot org>
2
3
pkgname=libfaxtiff-git
4
pkgver=r40.914a96a
5
pkgrel=1
6
pkgdesc="CCITT Group 3/4 fax codec extracted from libtiff"
7
arch=('x86_64')
8
url="https://github.com/thinkoid/libfaxtiff"
9
license=('libtiff')
10
makedepends=('git' 'meson')
11
provides=('libfaxtiff')
12
conflicts=('libfaxtiff')
13
# Static-only library: keep the .a (default OPTIONS strip it) and build
14
# without LTO -- a slim-LTO archive is unusable by non-LTO consumers.
15
options=('staticlibs' '!lto')
16
source=("libfaxtiff::git+https://github.com/thinkoid/libfaxtiff.git")
17
sha256sums=('SKIP')
18
19
pkgver() {
20
cd libfaxtiff
21
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
22
}
23
24
build() {
25
arch-meson libfaxtiff build
26
meson compile -C build
27
}
28
29
check() {
30
meson test -C build --print-errorlogs
31
}
32
33
package() {
34
meson install -C build --destdir "$pkgdir"
35
install -Dm644 libfaxtiff/LICENSE.md \
36
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
37
}
38
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 00:03:42 | LOW | 2 |
| 2026-08-15 00:26:13 | LOW | 2 |
| 2026-08-14 17:29:23 | LOW | 2 |