wake-build-git
maintainer MrQuantumOFF
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's own Git repository, which is a normal AUR practice; the 'recently orphaned' flag does not imply malicious intent or code changes.
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 package builds from the project's own Git repository, which is a normal AUR practice; the 'recently orphaned' flag does not imply malicious intent or code changes.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# This is an example PKGBUILD file. Use this as a start to creating your own,
2
# and remove these comments. For more information, see 'man PKGBUILD'.
3
# NOTE: Please fill out the license field for your package! If it is unknown,
4
# then please put 'unknown'.
5
6
# The following guidelines are specific to BZR, GIT, HG and SVN packages.
7
# Other VCS sources are not natively supported by makepkg yet.
8
9
# Maintainer: Your Name <youremail@domain.com>
10
pkgname=wake-build-git
11
pkgver=r15.8b86501
12
pkgrel=1
13
pkgdesc="WAKE build system writen in rust"
14
arch=(x86_64)
15
url="https://github.com/mrquantumoff/wake"
16
license=('BSD 2 Clause')
17
groups=("mrquantumoff")
18
depends=("bash")
19
makedepends=('git' 'cargo' 'make')
20
optdepends=("git")
21
provides=("${pkgname%-git}")
22
conflicts=("${pkgname%-git}")
23
replaces=()
24
backup=()
25
options=()
26
source=(git+https://github.com/mrquantumoff/wake.git)
27
md5sums=('SKIP')
28
29
# Please refer to the 'USING VCS SOURCES' section of the PKGBUILD man page for
30
# a description of each element in the source array.
31
32
pkgver() {
33
cd $srcdir/wake
34
35
# The examples below are not absolute and need to be adapted to each repo. The
36
# primary goal is to generate version numbers that will increase according to
37
# pacman's version comparisons with later commits to the repo. The format
38
# VERSION='VER_NUM.rREV_NUM.HASH', or a relevant subset in case VER_NUM or HASH
39
# are not available, is recommended.
40
41
# Git, tags available
42
#printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
43
44
# Git, no tags available
45
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
46
47
# Mercurial
48
#printf "r%s.%s" "$(hg identify -n)" "$(hg identify -i)"
49
50
# Subversion
51
#printf "r%s" "$(svnversion | tr -d 'A-z')"
52
}
53
54
prepare() {
55
cd "$srcdir/wake"
56
}
57
58
build() {
59
cd ${srcdir}/wake
60
make
61
}
62
63
package() {
64
cd "$srcdir/wake"
65
install -Dm755 -t "${pkgdir}/usr/bin/" target/debug/wake
66
chmod +x ${pkgdir}/usr/bin/wake
67
}
68
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 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |