Displaying 2 results from an estimated 2 matches for "winrlibs".
Did you mean:
winelibs
2005 Feb 07
1
Problems encountered/fixed making CrossCompileBuild
...e R sources are unpacked for cross-
building
WINR = $(RCB)/WinR
## the dirECTOry where R for Linux will be compiled and
installed
LINUXR = $(RCB)/LinuxR
## the directory where package sources are stored
PKGDIR = $(RCB)/pkgsrc
## the directory where the built packages for windows are to
be stored
WINRLIBS = $(RCB)/WinRlibs
## current versions
R = R-2.0.0
## snapshot R is only available at
ftp://ftp.stat.math.ethz.ch/Software/R
ifeq ($(findstring devel, $(R)), devel)
RURL = ftp://ftp.stat.math.ethz.ch/Software/R
REXT = tar.gz
else
RURL = http://cran.us.r-project.org/src/base/R-2
REXT = tar.gz
endif...
2005 Mar 25
0
Re: Cross-building R packages
...ticsPed_0.1 | cut -d'_' -f1,1`; \
cd /home/packages/RCrossBuild/pkgsrc; \
rm -rf $mypkg; \
tar zxf GeneticsPed_0.1.tar.gz; \
echo -------$mypkg------; \
cd /home/packages/RCrossBuild/WinR/R-2.0.1/src/gnuwin32/; \
make PKGDIR=/home/packages/RCrossBuild/pkgsrc
RLIB=/home/packages/RCrossBuild/WinRlibs STAMP=no HELP=YES pkg-$mypkg; \
mkdir -p /home/packages/RCrossBuild/WinRlibs; \
cd /home/packages/RCrossBuild/WinRlibs; \
rm -rf $mypkg.zip; \
zip -rl $mypkg.zip $mypkg -x \*.so \*.dll \*.RData \*.rda \*.zip \*.rds
\*.pdf \*.ps;\
zip -r9 $mypkg.zip $mypkg -i \*.so \*.dll \*.RData \*.rda \*.zip \*....