diff options
author | tytan652 | 2020-05-21 15:28:42 +0200 |
---|---|---|
committer | tytan652 | 2020-05-21 15:28:42 +0200 |
commit | b7bf5d9bb5d139e6e0408c7e6b995c9c453c0b8f (patch) | |
tree | 8d008e9712885a2742385db720bc4b29a798416d /PKGBUILD | |
parent | 67598da192e1be3c199cf72b11163e77db152e2f (diff) | |
download | aur-b7bf5d9bb5d139e6e0408c7e6b995c9c453c0b8f.tar.gz |
update to 0.6.1 and remove python2 support
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,18 +1,18 @@ # Maintainer: Sven Schneider <archlinux.sandmann@googlemail.com> pkgname=libfreenect -pkgver=0.5.6 +pkgver=0.6.1 pkgrel=1 pkgdesc="Drivers and libraries for the Xbox Kinect device on Linux" arch=('i686' 'x86_64') url="http://openkinect.org" license=('GPL') -depends=('libusb' 'glu' 'freeglut' 'bash' 'python' 'python2') -makedepends=('cmake' 'libxmu' 'cython' 'python-numpy' 'cython2' 'python2-numpy') +depends=('libusb' 'glu' 'freeglut' 'python') +makedepends=('cmake' 'libxmu' 'cython' 'python-numpy') optdepends=('opencv: support for python demos' - 'python2-matplotlib: support for python demos') + 'python-matplotlib: support for python demos') source=(${pkgname}-${pkgver}.tar.gz::https://github.com/OpenKinect/libfreenect/archive/v${pkgver}.tar.gz) -sha512sums=('f2bc2848d105a36e8e9f5f6cc18fe703593b6f1dcf1ee00f6ab0552f14751e353678b46b282028916a7ee82182111282a61ec27fd61f263e7f3fc9b312db7615') +sha512sums=('832cf6f184b71f1a447068c3a7b745471a81ffa5e026ef9cfab9c479e26f4dcd49cb60ffde5238ba18e132c7bb4dd6b812a5b0e443bd0dbb99ea748e359a0e16') prepare() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -25,7 +25,7 @@ build() { -DPROJECT_INCLUDE_INSTALL_DIR=/usr/include \ -DBUILD_REDIST_PACKAGE=OFF \ -DBUILD_OPENNI2_DRIVER=ON \ - -DBUILD_PYTHON=ON . + -DBUILD_PYTHON3=ON . make } |