neverball
MEDIUM
maintainer SanskritFritz
13 votes
scanned 2026-09-10 09:20:32.972965
Why flagged
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
Triggered rules
Medium
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:16
source=(http://neverball.org/${pkgname}-${pkgver}.tar.gz
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: SanskritFritz (gmail)
2
# Maintainer: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG
3
# Contributor: Eric Bélanger <eric@archlinux.org>
4
# Contributor: useraur111 (AUR)
5
6
pkgname=neverball
7
pkgver=1.6.0
8
pkgrel=5
9
pkgdesc="3D game similar to Super Monkey Ball or Marble Madness"
10
arch=('x86_64')
11
url="http://neverball.org/"
12
license=('GPL')
13
depends=('sdl2_ttf' 'libgl' 'libpng' 'libjpeg' 'libvorbis' 'physfs' \
14
'hicolor-icon-theme' 'xdg-utils')
15
makedepends=('mesa')
16
source=(http://neverball.org/${pkgname}-${pkgver}.tar.gz
17
neverball-filesystem.patch::"https://github.com/Neverball/neverball/commit/27279856.patch"
18
neverball-gcc10.patch::"https://github.com/Neverball/neverball/commit/a42492b8db06934c7a794630db92e3ff6ebaadaa.patch")
19
sha256sums=('73fe63cca4f96e2d355480d03bc0b2904e83a0abdf65fe8c52db5cc3cca88fa0'
20
'b93f17315766a8f1a70f46716cd99260981f4797ec1589b26f03bfca201a8e0d'
21
'6bc37c97b9fbbdbcb890344d08a958b038b0333bc74230147b93d9be9341d89e')
22
23
prepare() {
24
cd $pkgname-$pkgver
25
patch -Np1 <../neverball-filesystem.patch # Fix creating settings dir
26
patch -Np1 <../neverball-gcc10.patch # Fix building with -fno-common
27
}
28
29
build() {
30
cd ${pkgname}-${pkgver}
31
make DATADIR=/usr/share/neverball LOCALEDIR=/usr/share/locale \
32
CPPFLAGS="$CPPFLAGS -DNDEBUG" CFLAGS="$CFLAGS"
33
}
34
35
package(){
36
cd ${pkgname}-${pkgver}
37
install -d "${pkgdir}/usr/bin"
38
install -d "${pkgdir}"/usr/share/{neverball,locale,applications,doc/neverball}
39
install -d "${pkgdir}"/usr/share/man/man{1,6}
40
41
install -m755 neverball neverputt mapc "${pkgdir}/usr/bin"
42
cp -r locale/* "${pkgdir}/usr/share/locale/"
43
cp -r data/* "${pkgdir}/usr/share/neverball/"
44
cp -r doc/* "${pkgdir}/usr/share/doc/neverball/"
45
install -m644 dist/*.desktop "${pkgdir}/usr/share/applications/"
46
install -m644 dist/mapc.1 "${pkgdir}/usr/share/man/man1"
47
install -m644 dist/{neverball.6,neverputt.6} "${pkgdir}/usr/share/man/man6"
48
49
for i in 16 24 32 48 64 128 256 512; do
50
install -D -m644 dist/neverball_$i.png "${pkgdir}/usr/share/icons/hicolor/${i}x$i/apps/neverball.png"
51
install -D -m644 dist/neverputt_$i.png "${pkgdir}/usr/share/icons/hicolor/${i}x$i/apps/neverputt.png"
52
done
53
54
chmod -R u=rwX,go=rX "${pkgdir}/usr/share/neverball"
55
}
56
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-10 09:20:32 | Medium | 1 |
| 2026-06-19 19:07:35 | Clean | 2 |
| 2026-06-18 16:11:54 | Medium | 1 |