if (libraryNamesAdded.contains(library.getFile().getName().substring(0,
library.getFile().getName().lastIndexOf("-")))) {
continue;
}
if (library.getFile().exists()) {
if (library.shouldExtract()) {
Utils.unzip(library.getFile(), getNativesDirectory(), library.getExtractRule());
} else {
File dirToInstall = getBinDirectory();
Utils.copyFile(library.getFile(), getBinDirectory());
}