astronex
LOW
maintainer Uthopik
0 votes
scanned 2026-08-20 17:11:42.006138
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: Uthopik <josearrillaga@ik.me>
2
pkgname=astronex
3
pkgver=2.1
4
pkgrel=1
5
pkgdesc="An astrology program for calculating and drawing charts according to the API Method. Used in Huber method. Python 3 version."
6
arch=('any')
7
url="https://github.com/Uthopik/astronex-python-3"
8
license=('GPL-3.0-only')
9
depends=(
10
'python'
11
'python-gobject'
12
'python-cairo'
13
'gtk3'
14
'pyswisseph'
15
'python-configobj'
16
'python-pillow'
17
'python-tzdata'
18
)
19
makedepends=('git')
20
provides=("${pkgname}")
21
conflicts=("${pkgname}")
22
source=("git+${url}.git")
23
sha256sums=('SKIP')
24
25
package() {
26
cd "astronex-python-3"
27
28
# 1. Copiar el paquete 'astronex' (que incluye locale, resources, gui, etc.) y nex.py
29
install -dm755 "${pkgdir}/usr/share/astronex"
30
cp -r astronex nex.py pysw.py "${pkgdir}/usr/share/astronex/"
31
32
# 2. Instalar la fuente astrológica en el sistema
33
install -Dm644 astronex/resources/Astro-Nex.ttf \
34
"${pkgdir}/usr/share/fonts/TTF/Astro-Nex.ttf"
35
36
# 3. Lanzador ejecutable en /usr/bin/astronex
37
install -dm755 "${pkgdir}/usr/bin"
38
cat << 'EOF' > "${pkgdir}/usr/bin/astronex"
39
#!/bin/sh
40
cd /usr/share/astronex
41
exec python3 nex.py "$@"
42
EOF
43
chmod 755 "${pkgdir}/usr/bin/astronex"
44
45
# 4. Acceso directo .desktop e icono del sistema
46
install -Dm644 astronex/resources/astronex.png \
47
"${pkgdir}/usr/share/pixmaps/astronex.png"
48
49
install -dm755 "${pkgdir}/usr/share/applications"
50
cat << 'EOF' > "${pkgdir}/usr/share/applications/astronex.desktop"
51
[Desktop Entry]
52
Name=Astro-Nex
53
Comment=Astrological calculation software
54
Exec=astronex
55
Icon=astronex
56
Terminal=false
57
Type=Application
58
Categories=Education;Science;
59
EOF
60
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-20 17:11:42 | Low | 1 |