terminal-image-paste-git
LOW
maintainer chiconcota
0 votes
scanned 2026-09-21 00:26:32.109917
Why flagged
The package builds from its own source via a git checkout from the project's GitHub 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 from its own source via a git checkout from the project's GitHub repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: chiconcota <chiconcota@users.noreply.github.com>
2
3
pkgname=terminal-image-paste-git
4
_pkgname=terminal-image-paste
5
pkgver=1.0.0.r5.gfe4d8c4
6
pkgrel=1
7
pkgdesc="Universal CLI utility to quickly paste images from clipboard into terminal on Linux (Wayland / X11)"
8
arch=('any')
9
url="https://github.com/chiconcota/terminal-image-paste"
10
license=('MIT')
11
depends=('bash')
12
optdepends=(
13
'wl-clipboard: Wayland clipboard support (recommended)'
14
'wtype: Wayland keystroke simulation (recommended)'
15
'xclip: X11 clipboard support'
16
'xdotool: X11 keystroke simulation'
17
'timg: High-resolution terminal image viewer'
18
'chafa: Character art terminal image viewer fallback'
19
)
20
provides=('terminal-image-paste' 'tip')
21
conflicts=('terminal-image-paste')
22
source=("git+https://github.com/chiconcota/terminal-image-paste.git")
23
sha256sums=('SKIP')
24
25
pkgver() {
26
cd "${srcdir}/${_pkgname}"
27
git describe --long --tags 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' || \
28
printf "1.0.0.r%s.g%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
29
}
30
31
package() {
32
cd "${srcdir}/${_pkgname}"
33
34
# Install CLI binary
35
install -Dm755 bin/tip "${pkgdir}/usr/bin/tip"
36
37
# Install modular library files
38
install -d "${pkgdir}/usr/lib/tip"
39
install -m644 lib/*.sh "${pkgdir}/usr/lib/tip/"
40
41
# Install license and documentation
42
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
43
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
44
}
45
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-21 00:26:32 | Low | 2 |
| 2026-09-20 23:33:19 | Low | 2 |