Cloned library HDF5-1.14.1 with extra build files for internal package management.
				
			 
			
		 
		
		
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
	
		
			
				
				
					
						
						
						
							 | 
							
							#!/usr/bin/env bash
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							if [ -z "$1" ]
 | 
						
						
						
						
							 | 
							
							then
 | 
						
						
						
						
							 | 
							
							   printf "Usage: setup.sh install_directory [dependencies].\n" 1>&2
 | 
						
						
						
						
							 | 
							
							   exit 1
 | 
						
						
						
						
							 | 
							
							fi
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							cd $(dirname $0)
 | 
						
						
						
						
							 | 
							
							libname=$(basename $(pwd))
 | 
						
						
						
						
							 | 
							
							./configure --prefix="$1" --with-zlib="$2" CFLAGS="-fPIC"
 | 
						
						
						
						
							 | 
							
							make -j8
 | 
						
						
						
						
							 | 
							
							# make check -j8
 | 
						
						
						
						
							 | 
							
							make install
 | 
						
						
						
						
							 | 
							
							
 |