File: configure.ucrt

package info (click to toggle)
r-bioc-rhdf5lib 1.20.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 384 kB
  • sloc: sh: 67; ansic: 40; makefile: 7
file content (15 lines) | stat: -rwxr-xr-x 350 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

#untar the lib
BASEPBNAME="hdf5"
PBTGZNAME=hdf5_headers_1.10.7.tar.gz
cd src
if test -d ${BASEPBNAME}; then 
	echo 'found ' $BASEPBNAME ' header sources; using what is there.'
else
	echo "untarring $PBTGZNAME ...";
	## we'll use Rscript to untar the file
	"${R_HOME}/bin${R_ARCH_BIN}/Rscript.exe" -e "untar('wininclude/$PBTGZNAME')"
fi;