Package Details: jpcsp r0f1ba37-1

Git Clone URL: https://aur.archlinux.org/jpcsp.git (read-only, click to copy)
Package Base: jpcsp
Description: Java PSP Emulator
Upstream URL: http://jpcsp.org/
Keywords: emulator psp
Licenses: GPL
Submitter: bug
Maintainer: soimort
Last Packager: soimort
Votes: 32
Popularity: 0.000000
First Submitted: 2009-09-01 11:07 (UTC)
Last Updated: 2018-02-20 09:42 (UTC)

Dependencies (2)

Required by (0)

Sources (3)

Pinned Comments

bug commented on 2016-12-09 07:38 (UTC)

To whom it may concern, There hasn't been a stable version from upstream in years. You should jpcsp-git instead. On another note, it seems googlecode is no longer hosting this (at all). I don't have access to the source of v0.7. If anyone can find it and link me, I'll be able to update the PKGBUILD.

Latest Comments

1 2 Next › Last »

bug commented on 2016-12-09 07:38 (UTC)

To whom it may concern, There hasn't been a stable version from upstream in years. You should jpcsp-git instead. On another note, it seems googlecode is no longer hosting this (at all). I don't have access to the source of v0.7. If anyone can find it and link me, I'll be able to update the PKGBUILD.

rappel commented on 2013-07-29 23:17 (UTC)

They do have now an official 0.7 release in their googlecode page as featured downloads. https://code.google.com/p/jpcsp/downloads/list

allencch commented on 2012-07-24 03:40 (UTC)

The jpcsp.sh file has a line, java -Xmx512m -Djava.library.path=/opt/jpcsp/lib/linux-amd64 -jar "/opt/jpcsp/bin/jpcsp.jar" as a result, the validation of the file failed on i686 architecture. Would you please change the line to java -Xmx512m -Djava.library.path=/opt/jpcsp/lib/linux-ARCH -jar "/opt/jpcsp/bin/jpcsp.jar" Then, in the PKGBUILD, change the md5sum part to [ "$CARCH" = "i686" ] && { md5sums=('cc911bfe236ee015bd2afdf9d607f91c' '44a680a4797eec6394cf131010ca23c1' 'cd39aad03798576eb5228ed4184885c8') sed -i 's/ARCH/x86/g' jpcsp.sh } [ "$CARCH" = "x86_64" ] && { _pkgarch='amd64' md5sums=('9de05a97eb43f7a639967d93b318e420' '5920b514ad044430d8f71243ac2e2e63' 'cd39aad03798576eb5228ed4184885c8') sed -i 's/ARCH/amd64/g' jpcsp.sh } So that any architecture can work properly. Besides that, can you change the dependency of "jre7-openjdk" to "java-runtime"? So that even jre6 can work also. Thank you.

bug commented on 2012-04-02 20:03 (UTC)

To whom who may concern: The latest `stable` version of jpcsp is 0.6. They do publish SVN snapshots on the site [With really annoying download location - depositfiles]. In other words, please don't mark it as out-of-date for no reason. Thank you, On another note. If you want the SVN build. I've made a package for it. https://aur.archlinux.org/packages.php?ID=58152

Cravix commented on 2012-03-05 11:25 (UTC)

install=('jpcsp.install') -> install=jpcsp.install and add jre7-openjdk to deps, or you cannot run it.

rafaelff commented on 2011-06-05 17:46 (UTC)

Strip is failing... Maybe the PKGBUILD should have options=('!strip') ? $ makepkg -fs (...) ==> Tidying install... -> Purging other files... -> Compressing man and info pages... -> Stripping unneeded symbols from binaries and libraries... /usr/bin/strip: Unable to recognise the format of the input file `./opt/jpcsp/demos/minifire.pbp'

<deleted-account> commented on 2010-10-04 11:31 (UTC)

the jpcsp executable script still points to the x86 library-path as opposed to the arch-specific one.

bug commented on 2010-10-04 07:04 (UTC)

Fixed, now it should download the file based on the system.

<deleted-account> commented on 2010-10-03 14:59 (UTC)

There is a real difference: the binaries within lib/linux-x86 of the x86 package are 32-bit, and 64-bit within the x86-64 package. The 64-bit JVM does't like 32-bit binaries, so an error was spat out upon initialization of the program. I hacked together a 64-bit-compatible version of the PKGBUILD and the error subsided. On neither version have I tried running a ROM yet, however.