Makefile 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #
  2. # Copyright (C) 2010-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=libusb-compat
  9. PKG_VERSION:=0.1.4
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=@SF/libusb
  13. PKG_HASH:=ed5bdd160c7b01ef767fb931a81b454f46226d1e2cf58502ced758d3e5a9fdc4
  14. PKG_INSTALL:=1
  15. PKG_BUILD_PARALLEL:=1
  16. PKG_LICENSE:=LGPL-2.1
  17. PKG_MAINTAINER := Felix Fietkau <nbd@nbd.name>
  18. include $(INCLUDE_DIR)/package.mk
  19. define Package/libusb-compat
  20. SECTION:=libs
  21. CATEGORY:=Libraries
  22. TITLE:=libusb-0.1 compatibility library
  23. DEPENDS:=+libusb-1.0
  24. URL:=http://libusb.wiki.sourceforge.net/
  25. endef
  26. define Package/libusb-compat/description
  27. libusb is a C library that gives applications easy access to USB devices on
  28. many different operating systems.
  29. endef
  30. TARGET_CFLAGS += $(FPIC)
  31. define Build/InstallDev
  32. $(INSTALL_DIR) $(1)
  33. $(CP) $(PKG_INSTALL_DIR)/* $(1)/
  34. $(INSTALL_DIR) $(2)/bin
  35. $(CP) $(PKG_INSTALL_DIR)/usr/bin/libusb-config $(2)/bin/
  36. endef
  37. define Package/libusb-compat/install
  38. $(INSTALL_DIR) $(1)/usr/lib
  39. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libusb-0.1.so* $(1)/usr/lib/
  40. endef
  41. $(eval $(call BuildPackage,libusb-compat))