lupin-bin
LOW
maintainer espadon
0 votes
scanned 2026-09-09 13:19:49.747679
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: mfw <espadonne@outlook.com>
2
3
pkgname=lupin-bin
4
_pkgname=lupin
5
pkgver=0.1.27
6
pkgrel=1
7
pkgdesc='The reference interpreter for the wolf language, and the compiler differential oracle (release archive)'
8
arch=('x86_64' 'aarch64')
9
url='https://github.com/wolffe-lang/wolf-interp'
10
license=('GPL-3.0-or-later')
11
depends=('gcc-libs' 'glibc')
12
optdepends=('wolf-lang-bin: the compiler lupin is differentially tested against')
13
# A -bin package redistributes the release's own bytes: no re-strip,
14
# and no debug split out of a binary whose sources are not here.
15
options=('!strip' '!debug')
16
provides=("lupin=$pkgver")
17
conflicts=('lupin')
18
# The archives the release publishes, byte for byte — so the D57 stamp
19
# inside them is the release job's own and `lupin --version` prints the
20
# bare version with no `+dev` suffix.
21
source_x86_64=("$_pkgname-$pkgver-x86_64.tar.gz::$url/releases/download/v$pkgver/lupin-$pkgver-x86_64-unknown-linux-gnu.tar.gz")
22
source_aarch64=("$_pkgname-$pkgver-aarch64.tar.gz::$url/releases/download/v$pkgver/lupin-$pkgver-aarch64-unknown-linux-gnu.tar.gz")
23
sha256sums_x86_64=('b615b0f957d7fd22b2a5deaaa960ff427d79c26b5c37b9ea9fcc6eaa4821ebe1')
24
sha256sums_aarch64=('7536d07ede3d056458b10478012327fdc8186872fdfb36eced6db2bdc757f36c')
25
26
package() {
27
local _triple
28
case "$CARCH" in
29
x86_64) _triple=x86_64-unknown-linux-gnu ;;
30
aarch64) _triple=aarch64-unknown-linux-gnu ;;
31
esac
32
cd "lupin-$pkgver-$_triple"
33
34
install -Dm755 lupin "$pkgdir/usr/bin/lupin"
35
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
36
install -Dm644 CHANGELOG.md "$pkgdir/usr/share/doc/$pkgname/CHANGELOG.md"
37
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
38
}
39
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-09 13:19:49 | Low | 1 |
| 2026-09-09 00:04:09 | Clean | 2 |
| 2026-09-08 17:18:20 | Low | 1 |