mxe/src/libusb.mk

41 lines
1.4 KiB
Makefile
Raw Normal View History

2010-01-16 22:02:02 +00:00
# This file is part of mingw-cross-env.
# See doc/index.html for further information.
2009-05-21 17:39:04 +01:00
# LibUsb
2009-05-21 17:39:04 +01:00
PKG := libusb
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.1.12.2
$(PKG)_CHECKSUM := a433ff5cf8dd24f5308491c8500a2143497b4b8f
2009-05-21 17:39:04 +01:00
$(PKG)_SUBDIR := $(PKG)-win32-src-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-win32-src-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://libusb-win32.sourceforge.net/
$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/libusb-win32/libusb-win32-releases/$($(PKG)_VERSION)/$($(PKG)_FILE)
2009-05-21 17:39:04 +01:00
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
$(call SOURCEFORGE_FILES,http://sourceforge.net/projects/libusb-win32/files/) | \
2009-05-21 17:39:04 +01:00
$(SED) -n 's,.*libusb-win32-src-\([0-9][^>]*\)\.tar.*,\1,p' | \
tail -1
2009-05-21 17:39:04 +01:00
endef
define $(PKG)_BUILD
# convert DOS line endings
$(SED) -i 's,\r$$,,' '$(1)/Makefile'
# don't actually build the library (DLL file),
# just create the DLL import stubs
$(MAKE) -C '$(1)' -j '$(JOBS)' host_prefix=$(TARGET) libusbd.a
cd '$(1)' && $(TARGET)-dlltool \
--dllname libusb0.dll \
--kill-at \
--add-stdcall-underscore \
--def libusb0.def \
--output-lib libusb.a
2009-05-21 17:39:04 +01:00
$(INSTALL) -d '$(PREFIX)/$(TARGET)/include'
2010-11-17 02:56:10 +00:00
$(INSTALL) -m644 '$(1)/src/usb.h' '$(PREFIX)/$(TARGET)/include/'
2009-05-21 17:39:04 +01:00
$(INSTALL) -d '$(PREFIX)/$(TARGET)/lib'
2010-11-17 02:56:10 +00:00
$(INSTALL) -m644 '$(1)/libusb.a' '$(PREFIX)/$(TARGET)/lib/'
$(INSTALL) -m644 '$(1)/libusbd.a' '$(PREFIX)/$(TARGET)/lib/'
2009-05-21 17:39:04 +01:00
endef