Search Criteria
Package Details: psmoveapi-git 4.0.4.r7.ge64a766-1
Git Clone URL: | https://aur.archlinux.org/psmoveapi-git.git (read-only, click to copy) |
---|---|
Package Base: | psmoveapi-git |
Description: | Playstation Move Motion Controller API |
Upstream URL: | http://thp.io/2010/psmove/ |
Licenses: | |
Submitter: | Jack12816 |
Maintainer: | Jack12816 |
Last Packager: | Jack12816 |
Votes: | 1 |
Popularity: | 0.000000 |
First Submitted: | 2017-03-20 17:43 |
Last Updated: | 2017-10-17 07:18 |
Dependencies (11)
- bluez-libs (bluez-git)
- freeglut (freeglut-x11-svn, freeglut-wayland-svn)
- jdk7-openjdk (jdk7-openjdk-infinality)
- libusb (libusb-git)
- mono (mono48, mono-alpha, mono-beta, mono-stable, mono-visualstudio, mono-git, mono-alt-csc, mono5, mono-nightly)
- opencv (opencv-cuda-git, opencv2, opencv2-samples, opencv-with-python2-support, opencv-git, opencv-cuda)
- python2
- swig (swig-git)
- udev (systemd-light, systemd-cdown-git, eudev, systemd-git, eudev-git, systemd-selinux, systemd)
- v4l-utils (v4l-utils-rockchip)
- cmake (cmake-git) (make)
Latest Comments
Jack12816 commented on 2017-10-17 07:19
@asonix LGTM. Thanks for the work :)
asonix commented on 2017-10-17 04:39
I just updated my github again. Now the python bindings are properly installed.
asonix commented on 2017-10-17 04:10
https://github.com/asonix/psmoveapi-arch
Here's my changes. They work on my machine
asonix commented on 2017-10-17 04:05
This package no longer compiles.
fixes are as follows:
run cmake in package() function (at the end probably)
+
+ mkdir -p build
+ cd build
+ cmake ..
fix the opencv headers patch
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 6e45cae..081c00a 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -91,5 +91,9 @@ list(APPEND PSMOVEAPI_REQUIRED_LIBS m)
include_directories(${UDEV_INCLUDE_DIRS})
list(APPEND PSMOVEAPI_REQUIRED_LIBS ${UDEV_LIBRARIES})
+ pkg_check_modules(V4L2 REQUIRED libv4l2)
+ include_directories(${V4L2_INCLUDE_DIRS})
+ list(APPEND PSMOVEAPI_REQUIRED_LIBS ${V4L2_LIBRARIES})
+
pkg_check_modules(BLUEZ REQUIRED bluez>=5)