Package Details: pcsx2-plugin-usbqemu-wheel 0.8.2_3-1

Git Clone URL: https://aur.archlinux.org/pcsx2-plugin-usbqemu-wheel.git (read-only, click to copy)
Package Base: pcsx2-plugin-usbqemu-wheel
Description: A USB plugin modified to support steering wheels in pcsx2.
Upstream URL: https://github.com/jackun/USBqemu-wheel
Licenses: Unlicense
Submitter: maz-1
Maintainer: e00
Last Packager: e00
Votes: 2
Popularity: 0.000000
First Submitted: 2015-10-17 14:35 (UTC)
Last Updated: 2020-01-16 00:40 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

slaphappy commented on 2020-10-21 11:14 (UTC)

The latest version from git has the necessary changes to build and run on x64. Here's a PKGBUILD that works:

# Maintainer: maz-1 < ohmygod19993 at gmail dot com >

pkgname=pcsx2-plugin-usbqemu-wheel
_pkgsrcname=USBqemu-wheel
pkgver=0.10.0_gfa92d4a
pkgrel=0
pkgdesc='A USB plugin modified to support steering wheels in pcsx2.'
arch=('i686' 'x86_64')
url='https://github.com/jackun/USBqemu-wheel'
license=('Unlicense')
depends=('pcsx2')
makedepends=('cmake')
commit_id="fa92d4a8a64d3a9d722ffc81e752ec55e09c4be9"
source=("https://github.com/jackun/USBqemu-wheel/archive/${commit_id}.tar.gz")
sha256sums=('3f8a812e8f9a37dd50f19b84fa16b8e751207061d6ee030018ecf839f6cc65b4')

build() {
cd "${srcdir}/${_pkgsrcname}-${commit_id}"
rm -rf build/
mkdir build && cd build/

cmake .. \
    -DCMAKE_INSTALL_PREFIX=/usr/lib/pcsx2 \
    -DPLUGIN_BUILD_DYNLINK_PULSE=FALSE \
    -DPLUGIN_BUILD_64BIT=TRUE
make
}

package() {
cd "${srcdir}/${_pkgsrcname}-${commit_id}"
cd build/

install -Dm644 libUSBqemu-wheel-${pkgver%_*}.so -t "$pkgdir/usr/lib/pcsx2/"
install -Dm644 ../LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}

slaphappy commented on 2020-10-21 10:44 (UTC)

32 bit plugin only; not compatible with the official pcsx2 package on x86_64

rafaelff commented on 2017-01-07 10:30 (UTC)

Please only install in /usr/lib32/pcsx2 for x86_64; for i686, install in /usr/lib. A IF statement should suffice.