class FFI::LibraryPath

def initialize(name, abi_number: nil, root: nil)

* root : An optional base path prepended to the library name.
* abi_number : The ABI number of the library.
* name : The name of the library without file prefix or suffix.

Build a new library path
def initialize(name, abi_number: nil, root: nil)
  @name = name
  @abi_number = abi_number
  @root = root
end