summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.html4
-rw-r--r--src/libusb1.mk27
2 files changed, 31 insertions, 0 deletions
diff --git a/index.html b/index.html
index bb516f7..23aa649 100644
--- a/index.html
+++ b/index.html
@@ -1633,6 +1633,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="website"><a href="http://libusb-win32.sourceforge.net/">LibUsb</a></td>
</tr>
<tr>
+ <td class="package">libusb1</td>
+ <td class="website"><a href="http://libusb.org/">LibUsb-1.0</a></td>
+ </tr>
+ <tr>
<td class="package">libvpx</td>
<td class="website"><a href="http://code.google.com/p/webm/">vpx</a></td>
</tr>
diff --git a/src/libusb1.mk b/src/libusb1.mk
new file mode 100644
index 0000000..c36c114
--- /dev/null
+++ b/src/libusb1.mk
@@ -0,0 +1,27 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := libusb1
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 1.0.16
+$(PKG)_CHECKSUM := ec164f02e6732c373e5a24be6b33a59142435615
+$(PKG)_SUBDIR := libusbx-$($(PKG)_VERSION)
+$(PKG)_FILE := libusbx-$($(PKG)_VERSION).tar.bz2
+$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/libusbx/releases/$($(PKG)_VERSION)/source/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc
+
+define $(PKG)_UPDATE
+ $(WGET) -q -O- 'http://sourceforge.net/projects/libusbx/files/releases/' | \
+ $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
+ head -1
+endef
+
+define $(PKG)_BUILD
+ cd '$(1)' && ./configure \
+ --host='$(TARGET)' \
+ --build="`config.guess`" \
+ --disable-shared \
+ --enable-static \
+ --prefix='$(PREFIX)/$(TARGET)'
+ $(MAKE) -C '$(1)' -j '$(JOBS)' install
+endef