Skip to content

User package - Simple Ports

2 messages · Keith J Sabol, Sundar Dorai-Raj

#
Keith J Sabol wrote:

            
Keith,

Have you read "Writing R Extensions" that comes with each R 
distribution? In it you will see that to CHECK/BUILD/INSTALL packages 
you need to use R CMD. As in

 > R CMD CHECK X
<snip check messages>
 > R CMD INSTALL X
<snip install messages>
 > R CMD BUILD X # to build the package into X_<version>.tar.gz
<snip build messages>
 > R CMD BUILD --binary X # to compile the package into X_<version>.zip
<snip build messages>

This is no different from the 1.8.x way of building packages on Windows 
except I think back then Rcmd was the equivalent of R CMD.

My version of R is currently R-2.0.0patched on Windows 2000.

--sundar