First commit

This commit is contained in:
Fabio Manganiello 2018-05-23 01:33:47 +02:00
commit 4077f2e068
3 changed files with 90 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
./__pycache__
./include
./leap
./Leap.i.diff
./LeapPython.cpp
./LeapPython.h
./LeapPython.so
./Leap.py
./LeapSDK.tar.gz

38
Makefile Normal file
View File

@ -0,0 +1,38 @@
PREFIX := $(if $(PREFIX),$(PREFIX),/usr)
PYTHON3_VERSION := $(shell python3 --version | cut -d' ' -f 2 | cut -d. -f 1,2)
ARCH := $(shell uname -m | sed -e 's/x86_64/x64/')
SDK_PATH=../../leap/LeapSDK
all:
[ -f ./LeapSDK.tar.gz ] || wget -O LeapSDK.tar.gz $(SOURCE)
mkdir -p leap
tar xvf LeapSDK.tar.gz -C leap --strip-components 1
cp -r $(SDK_PATH)/include ./include
wget http://tinyurl.com/leap-i-patch -O Leap.i.diff
patch -p0 < Leap.i.diff
swig -c++ -python -o LeapPython.cpp -interface LeapPython ./include/Leap.i
g++ -fPIC -I/usr/include/python$(PYTHON3_VERSION)m -I$(SDK_PATH)/include LeapPython.cpp $(SDK_PATH)/lib/$(ARCH)/libLeap.so -shared -o LeapPython.so
clean:
rm -rf __pycache__
rm -rf include
rm -rf leap
rm -f Leap.i.diff
rm -f LeapPython.cpp
rm -f LeapPython.h
rm -f LeapPython.so
rm -f Leap.py
rm -f LeapSDK.tar.gz
install:
mkdir -p $(PREFIX)/lib/python$(PYTHON3_VERSION)/site-packages/
install -m 0644 Leap.py $(PREFIX)/lib/python$(PYTHON3_VERSION)/site-packages/Leap.py
install -m 0755 LeapPython.so $(PREFIX)/lib/python$(PYTHON3_VERSION)/site-packages/LeapPython.so
install -m 0755 $(SDK_PATH)/lib/$(ARCH)/libLeap.so $(PREFIX)/lib/libLeap.so
uninstall:
rm -f $(PREFIX)/lib/python$(PYTHON3_VERSION)/site-packages/Leap.py
rm -f $(PREFIX)/lib/python$(PYTHON3_VERSION)/site-packages/LeapPython.so
rm -f $(PREFIX)/lib/libLeap.so

42
README.md Normal file
View File

@ -0,0 +1,42 @@
# Leap Motion SDK Python 3 module builer
The Leap Motion Python module is not [not officially compatible with Python 3](https://developer.leapmotion.com/documentation/python/devguide/Project_Setup.html#recompiling-leappython-for-python-3).
This project aims to provide a simple and automated way to build and install your Python 3 module for the Leap Motion.
## Dependencies
- `swig`
- `g++`
- `libpython3-dev` (on Debian/Ubuntu)
## Build the module
```shell
make
```
## Install the module
```shell
[sudo] make install
```
`PREFIX` (where both `libLeap.so` and the Python bindings will be installed) points to `/usr` by default. Change it if required:
```shell
PREFIX=/your/local/prefix make install
```
## Clean the source directory
```shell
make clean
```
## Uninstall the module
```shell
[sudo] make uninstall
```