https://github.com/cran/ff
Raw File
Tip revision: b82d64dd58ab43c37e8364118746a9398280d69e authored by Jens Oehlschl\xe4gel on 29 March 2012, 00:00:00 UTC
version 2.2-9
Tip revision: b82d64d
prebuild.sh
#!/bin/sh

# Produce the Rd-files for the documentation from the R source files
# 
# Prerequisites:
#   - Perl
#   - R_HOME must be set to the directory where R is installed

echo "#### starting prebuild.sh"

mkdir -p man
cd man
find ../R -name '*.[rR]' -exec cat \{\} \; | perl ../exec/make_rd.pl 
cd ..

echo "#### prebuild.sh completed!"
back to top