-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
27 lines (20 loc) · 880 Bytes
/
README.Rmd
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
---
output: md_document
---
## R Package Installer Deconstruction
The goal behind this project is to see how the underlying R installer package is created.
We do this by reverse engineering the installer package using the `pkgutil` tool.
Alternative, you can use "Show Package Contents" on the right click context menu.
### Overview of Tracked Files
- [Scripts](Scripts/): Shell scripts run by the installer
- [postflight](Scripts/postflight)
- Run after files have been installed for the **first time only**.
- Launches before the `postflight` script if one is included in `/scripts`.
- [postinstall](Scripts/postinstall)
- Run after all files have been installed.
### Installer File Archive Overview
Summary of macOS R installer for `r gsub('.pkg', '', list.files(pattern='R-.*.pkg'))`
taken on `r Sys.Date()`.
```{bash}
tree r-pkg
```