[R-gregmisc-users] SF.net SVN: r-gregmisc:[1400] trunk/gdata/src
Brought to you by:
warnes
From: <wa...@us...> - 2010-01-24 08:47:33
|
Revision: 1400 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1400&view=rev Author: warnes Date: 2010-01-24 08:47:27 +0000 (Sun, 24 Jan 2010) Log Message: ----------- Use the original gz file for Compress::Raw::Zlib to avoid issues with 'non-platform-independent' filename error in R CMD CHECK Modified Paths: -------------- trunk/gdata/src/Makefile Added Paths: ----------- trunk/gdata/src/Compress-Raw-Zlib-2.024.tar.gz Removed Paths: ------------- trunk/gdata/src/Compress-Raw-Zlib-2.024/ Added: trunk/gdata/src/Compress-Raw-Zlib-2.024.tar.gz =================================================================== (Binary files differ) Property changes on: trunk/gdata/src/Compress-Raw-Zlib-2.024.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/gdata/src/Makefile =================================================================== --- trunk/gdata/src/Makefile 2010-01-24 08:38:25 UTC (rev 1399) +++ trunk/gdata/src/Makefile 2010-01-24 08:47:27 UTC (rev 1400) @@ -1,9 +1,13 @@ +TARGET=Compress-Raw-Zlib-2.024 + default: - cd Compress-Raw-Zlib-2.024 ; \ + tar xvf ${TARGET}.tar.gz + cd ${TARGET} ; \ perl Makefile.PL PREFIX=${PWD}/../inst/perl LIB=${PWD}/../inst/perl ; \ make; \ make install clean: - cd Compress-Raw-Zlib-2.024 ; \ - make clean \ No newline at end of file + rm -rf ${TARGET} + rm -rf ../inst/perl/share + rm -rf ../inst/perl/darwin-2level This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |