src/install.libs.R

# This script was modified from the pdbBASE package.
#
files <- c("libboom.a", "symbols.rds")
files <- files[file.exists(files)]
if (length(files) > 0) {
  if (nzchar(R_ARCH)) {
      libsarch <- paste("lib", R_ARCH, sep='')
  } else {
    libsarch <- "lib"
  }
  dest <- file.path(R_PACKAGE_DIR, libsarch)
  dir.create(dest, recursive = TRUE, showWarnings = FALSE)
  file.copy(files, dest, overwrite = TRUE, recursive = TRUE)
}

Try the Boom package in your browser

Any scripts or data that you put into this service are public.

Boom documentation built on Nov. 10, 2022, 5:56 p.m.