-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.build_package.R
executable file
·83 lines (57 loc) · 1.67 KB
/
.build_package.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env Rscript
options(echo = TRUE)
#--------------------------------------------
# Carregar pacotes.
# - Para desenvolvimento do pacote
library(devtools)
library(roxygen2)
# - Instalando as dependencias (descritas no DESCRIPTION)
install_deps(dependencies = TRUE,
quiet = TRUE,
upgrade = FALSE,
repos = "http://cran-r.c3sl.ufpr.br/")
sessionInfo()
#--------------------------------------------
# Carregar objetos do pacote.
file.create("NAMESPACE")
load_all()
ls("package:labestData")
packageVersion("labestData")
#--------------------------------------------
# Produzir a documentação dos objetos.
document()
cp <- compareVersion(a = as.character(packageVersion("devtools")),
b = "1.9.1")
if (cp > 0) {
check_man()
} else {
check_doc()
}
#--------------------------------------------
# Gerar as vinhetas, caso existam.
if (length(list.files("./vignettes"))) {
build_vignettes(dependencies = FALSE)
}
#--------------------------------------------
# Checar conteúdo e organização do pacote.
checagem <- check(cleanup = FALSE,
manual = TRUE,
vignettes = FALSE,
check_dir = "../")
if (length(checagem$errors) > 0) {
cat(checagem$errors, sep = "\n")
stop("Falha ao checar o pacote")
}
#--------------------------------------------
# Construir pacote.
build(manual = TRUE, vignettes = TRUE)
#--------------------------------------------
# Instalar o pacote.
rm(list = ls())
lib <- path.expand("~/R-test/")
dir.create(lib)
.libPaths(new = lib)
.libPaths()
install()
unlink(lib, recursive = TRUE)
#--------------------------------------------