libusb is a C library that provides generic access to USB devices. It is intended to be used by developers to facilitate the production of applications that communicate with USB hardware.
Download the source code as,
$ git clone https://github.com/libusb/libusb.git
$ cd libusb/
$ ./autogen.sh
$ mkdir out
$ ./configure --prefix=/home/devbee/wp/libusb/out
$ make
$ make install
$ tree out
out
├── include
│ └── libusb-1.0
│ └── libusb.h
└── lib
├── libusb-1.0.a
├── libusb-1.0.la
├── libusb-1.0.so -> libusb-1.0.so.0.1.0
├── libusb-1.0.so.0 -> libusb-1.0.so.0.1.0
├── libusb-1.0.so.0.1.0
└── pkgconfig
└── libusb-1.0.pc
4 directories, 7 files
To compile examples,
$ cd examples
$ make
If you want to understand how libusb is getting used, check “usbutils – USB userspace utilities for Linux, how to compile, install and use on Ubuntu”