Date: Wednesday, April 29, 2015 @ 10:17:07
  Author: spupykin
Revision: 132490

Added:
  hidapi/
  hidapi/repos/
  hidapi/trunk/
  hidapi/trunk/PKGBUILD

----------+
 PKGBUILD |   34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

Added: hidapi/trunk/PKGBUILD
===================================================================
--- hidapi/trunk/PKGBUILD                               (rev 0)
+++ hidapi/trunk/PKGBUILD       2015-04-29 08:17:07 UTC (rev 132490)
@@ -0,0 +1,34 @@
+# Maintainer: Niels Martignène <niels.martign...@gmail.com>
+# Contributor: Nicolas Avrutin <nicolasa...@gmail.com>
+# Contributor: Emmanuel Gil Peyrot <linkma...@linkmauve.fr>
+
+pkgname=hidapi
+pkgver=0.8.0rc1
+_hidapiver=0.8.0-rc1
+pkgrel=2
+pkgdesc="Simple library for communicating with USB and Bluetooth HID devices"
+arch=(i686 x86_64)
+url="http://www.signal11.us/oss/hidapi/";
+license=('GPL3' 'BSD' 'custom')
+depends=('libusb')
+conflicts=('hidapi-git')
+source=("https://github.com/signal11/hidapi/archive/hidapi-${_hidapiver}.tar.gz";)
+md5sums=('069f9dd746edc37b6b6d0e3656f47199')
+
+build() {
+  cd "${srcdir}/hidapi-hidapi-${_hidapiver}"
+
+  ./bootstrap
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/hidapi-hidapi-${_hidapiver}"
+
+  make DESTDIR="${pkgdir}/" install
+
+  mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm -f "${pkgdir}/usr/share/doc/hidapi/"LICENSE*
+  install -m644 LICENSE.txt LICENSE-bsd.txt LICENSE-orig.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Reply via email to