diff --git a/.SRCINFO b/.SRCINFO index a264961..93a1e60 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,12 @@ -# Generated by makepkg 5.0.1 -# Mon Feb 29 14:56:16 UTC 2016 pkgbase = librealsense - pkgdesc = Librealsense is a cross-platform library (Linux, OSX, Windows) for capturing data from the IntelĀ® RealSenseā„¢ F200, SR300 and R200 cameras + pkgdesc = Librealsense is a cross-platform library (Linux, OSX, Windows) for capturing data from the Intel RealSense F200, SR300 and R200 cameras pkgver = 0.9 pkgrel = 1 url = https://github.com/IntelRealSense/librealsense arch = any license = Apache - depends = glfw>=3,libusb, + depends = glfw>=3 + depends = libusb depends = qtcreator source = https://github.com/IntelRealSense/librealsense/archive/v0.9.tar.gz md5sums = 8b30a944b51a9ff3fa00f2d1652ae9d9 diff --git a/PKGBUILD b/PKGBUILD index 131f788..0e47fe4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,9 +7,7 @@ arch=(any) url="https://github.com/IntelRealSense/librealsense" license=('Apache') makedepends=() -depends=('glfw>=3' - 'libusb' - 'qtcreator') +depends=('glfw>=3' 'libusb' 'qtcreator') changelog='' source=("https://github.com/IntelRealSense/librealsense/archive/v${pkgver}.tar.gz") md5sums=('8b30a944b51a9ff3fa00f2d1652ae9d9') @@ -23,6 +21,6 @@ package() { cd $srcdir/$pkgname-$pkgver/ install -m655 -d $pkgdir/usr/lib/$pkgname/ $pkgdir/usr/include/$pkgname/ - cp -r lib/* $pkgdir/usr/lib/$pkgname/ - cp -r include/$pkgname/* $pkgdir/usr/include/$pkgname/ + cp -r lib/* $pkgdir/usr/lib/ + cp -r include/$pkgname/* $pkgdir/usr/include/ }