Package Details: universal-randomizer 4.6.1-1

Git Clone URL: https://aur.archlinux.org/universal-randomizer.git (read-only, click to copy)
Package Base: universal-randomizer
Description: Pokemon Universal Randomizer
Upstream URL: https://github.com/Ajarmar/universal-pokemon-randomizer-zx
Licenses: GPL
Submitter: R0dn3yS
Maintainer: R0dn3yS
Last Packager: R0dn3yS
Votes: 0
Popularity: 0.000000
First Submitted: 2022-11-17 10:26 (UTC)
Last Updated: 2025-03-06 13:07 (UTC)

Dependencies (1)

Required by (0)

Sources (2)

Latest Comments

HurricanePootis commented on 2026-05-17 21:17 (UTC)

@R0dn3y

I have suggestions for your PKGBUILD:

  1. Please do not remove the pkgver from the source file you are downloading. This is how the archive is vendored to its specific version.
  2. Add bash to depends() due to the launcher script.
  3. Make license() SPDX compliant, as is required by modern PKGBUILDs:
diff --git a/PKGBUILD b/PKGBUILD
index a54f8d5..c085dda 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,9 +6,9 @@ pkgrel=1
 pkgdesc="Pokemon Universal Randomizer"
 arch=(x86_64)
 url="https://github.com/Ajarmar/universal-pokemon-randomizer-zx"
-license=(GPL)
-depends=("java-runtime")
-source=("PokeRandoZX.zip::https://github.com/Ajarmar/universal-pokemon-randomizer-zx/releases/download/v4.6.1/PokeRandoZX-v4_6_1.zip"
+license=(GPL-3.0-or-later)
+depends=("java-runtime" "bash")
+source=("https://github.com/Ajarmar/universal-pokemon-randomizer-zx/releases/download/v4.6.1/PokeRandoZX-v4_6_1.zip"
         "launcher")
 sha256sums=('26051fe8a6665ea0582dfcd4d1c3e4889da42a2f731f5fc530fff0cb691a43fd'
             'de3527ccc8ab0d163d47212e286cc255dfb6bf609c236656ad700f789d897683')

realitaetsverlus commented on 2022-12-31 20:22 (UTC) (edited on 2022-12-31 20:22 (UTC) by realitaetsverlus)

This package is broken as the URL it's trying to download the PokeRandoZX.jar from doesn't exist anymore. It's also kinda uncool to do that, it's probably better to build the jar from the source code on the system during the build process.