oops-bin
maintainer Dominiquini
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
Package builds from a prebuilt binary release on GitHub, which is normal for AUR; source is from the project's official repository, and the binary is not executed during build, posing minimal risk despite untrusted host.
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 90%): Package builds from a prebuilt binary release on GitHub, which is normal for AUR; source is from the project's official repository, and the binary is not executed during build, posing minimal risk despite untrusted host.
PKGBUILD
1
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
2
3
_gitauthor=programmersd21
4
_gitname=oops
5
_appname=${_gitname}
6
pkgname=${_appname}-bin
7
pkgdesc="🛡️ Undo daemon for destructive shell commands"
8
9
pkgver=0.1.0
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64')
14
_barch=('x86_64-unknown-linux-gnu')
15
16
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
17
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
18
url=${_ghurl}
19
20
license=('MIT')
21
22
provides=("${_appname}")
23
conflicts=("${_appname}")
24
depends=('glibc' 'libgcc')
25
26
options=(!strip)
27
28
source_x86_64=("${_appname}-${arch[0]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_gitname}-${_gitversion}-${_barch[0]}.tar.gz")
29
sha256sums_x86_64=('2bc60d7dc357e98068be8535047a5753733fdfabe0e8a7322dde544be47624cf')
30
31
32
package() {
33
cd "${srcdir}/${_gitname}-${_gitversion}/" || exit
34
35
install -Dm755 "${_appname}" "${pkgdir}/usr/bin/${_appname}"
36
37
install -Dm644 "systemd/${_appname}d.service" "${pkgdir}/usr/lib/systemd/user/${_appname}d.service"
38
39
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
40
41
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
42
}
43
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 03:19:42 | LOW | 2 |