aurpush
LOW
maintainer Aspenini
0 votes
scanned 2026-08-29 21:40:42.320390
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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.
PKGBUILD
1
# Maintainer: Aspen <169401290+Aspenini@users.noreply.github.com>
2
3
pkgname=aurpush
4
pkgver=0.1.0
5
pkgrel=1
6
pkgdesc="CLI for maintaining and publishing Arch Linux packages to the AUR"
7
arch=('x86_64')
8
url="https://github.com/Aspenini/aurpush"
9
license=('MIT')
10
depends=('git' 'openssh')
11
makedepends=('xmake')
12
options=('!debug')
13
14
# In-repo copy: if ../xmake.lua exists, build from this tree instead of GitHub.
15
_local_tree=
16
if [[ -f ../xmake.lua ]]; then
17
_local_tree="$(cd .. && pwd)"
18
fi
19
20
if [[ -n $_local_tree ]]; then
21
source=()
22
sha256sums=()
23
else
24
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
25
sha256sums=('SKIP')
26
fi
27
28
prepare() {
29
if [[ -n $_local_tree ]]; then
30
mkdir -p "$pkgname-$pkgver"
31
cp -a "$_local_tree"/{include,src,tests,xmake.lua,LICENSE,README.md} "$pkgname-$pkgver/"
32
fi
33
}
34
35
build() {
36
cd "$pkgname-$pkgver"
37
xmake config -y -P . -m release
38
xmake -y -P .
39
}
40
41
package() {
42
cd "$pkgname-$pkgver"
43
xmake install -y -P . --root --headers=n --libraries=n -o "$pkgdir/usr" aurpush
44
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
45
}
46
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-29 21:40:42 | Low | 1 |