quickjs-git
LOW
maintainer Chocobo1
0 votes
scanned 2026-09-26 19:15:27.170046
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: Chocobo1 <chocobo1 AT archlinux DOT net>
2
3
pkgname=quickjs-git
4
pkgver=r491.ga38171d
5
pkgrel=1
6
pkgdesc="A small and embeddable Javascript engine"
7
arch=('i686' 'x86_64')
8
url="https://bellard.org/quickjs/"
9
license=('MIT')
10
depends=('glibc')
11
makedepends=('git')
12
provides=("quickjs=$pkgver")
13
conflicts=('quickjs')
14
options=('staticlibs')
15
source=("git+https://github.com/bellard/quickjs.git")
16
sha256sums=('SKIP')
17
18
19
pkgver() {
20
cd "quickjs"
21
22
_rev=$(git rev-list --count --all)
23
_hash=$(git rev-parse --short HEAD)
24
printf "r%s.g%s" "$_rev" "$_hash"
25
}
26
27
check() {
28
cd "quickjs"
29
30
#make test
31
}
32
33
package() {
34
cd "quickjs"
35
36
make \
37
PREFIX="/usr" \
38
DESTDIR="$pkgdir" \
39
install
40
install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/quickjs"
41
}
42
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-26 19:15:27 | Low | 1 |