summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiels Martignène2015-09-27 14:14:58 +0200
committerNiels Martignène2015-09-27 14:14:58 +0200
commitcf9107e587a5dd8a11e95af252ac3547474c6116 (patch)
tree4ec7df1d8b25bbd78c345dad7c1c408737a7b596
parent632aac8d03009fccbe163be68d6b5fbc4f470564 (diff)
downloadaur-cf9107e587a5dd8a11e95af252ac3547474c6116.tar.gz
Upgrade to libusb 1.20
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD7
2 files changed, 7 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e9591a03dc4c..431de30c5d09 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = mingw-w64-libusb
pkgdesc = Library that provides generic access to USB devices (mingw-w64)
- pkgver = 1.0.19
+ pkgver = 1.0.20
pkgrel = 1
url = http://libusb.info
arch = any
@@ -12,8 +12,8 @@ pkgbase = mingw-w64-libusb
options = !strip
options = staticlibs
options = !buildflags
- source = http://downloads.sourceforge.net/project/libusb/libusb-1.0/libusb-1.0.19/libusb-1.0.19.tar.bz2
- sha256sums = 6c502c816002f90d4f76050a6429c3a7e0d84204222cbff2dce95dd773ba6840
+ source = http://downloads.sourceforge.net/project/libusb/libusb-1.0/libusb-1.0.20/libusb-1.0.20.tar.bz2
+ sha256sums = cb057190ba0a961768224e4dc6883104c6f945b2bf2ef90d7da39e7c1834f7ff
pkgname = mingw-w64-libusb
diff --git a/PKGBUILD b/PKGBUILD
index 58be5175269c..0f9ce8921d80 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: xantares <xantares09 at hotmail dot com>
pkgname=mingw-w64-libusb
-pkgver=1.0.19
+pkgver=1.0.20
pkgrel=1
pkgdesc="Library that provides generic access to USB devices (mingw-w64)"
arch=(any)
@@ -14,7 +14,7 @@ conflicts=('mingw-w64-libusbx')
replaces=('mingw-w64-libusbx')
options=('!strip' 'staticlibs' '!buildflags')
source=("http://downloads.sourceforge.net/project/libusb/libusb-1.0/libusb-${pkgver}/libusb-${pkgver}.tar.bz2")
-sha256sums=('6c502c816002f90d4f76050a6429c3a7e0d84204222cbff2dce95dd773ba6840')
+sha256sums=('cb057190ba0a961768224e4dc6883104c6f945b2bf2ef90d7da39e7c1834f7ff')
_architectures=('i686-w64-mingw32' 'x86_64-w64-mingw32')
@@ -26,7 +26,8 @@ build() {
../configure --prefix=/usr/${_arch} \
--host=${_arch} \
--enable-shared
- make
+ # They broke parallel building in libusb 1.20
+ make -j1
popd
done
}