mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	curl uses Happy Eyeballs to avoid long timeouts on systems with broken IPv6. Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			279 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			279 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -x
 | 
						|
set -e
 | 
						|
 | 
						|
PGROONGA_VERSION="2.2.8"
 | 
						|
 | 
						|
cd "$(mktemp -d)"
 | 
						|
 | 
						|
curl -LO https://packages.groonga.org/source/pgroonga/pgroonga-"$PGROONGA_VERSION".tar.gz
 | 
						|
tar xf pgroonga-"$PGROONGA_VERSION".tar.gz
 | 
						|
cd pgroonga-"$PGROONGA_VERSION"
 | 
						|
 | 
						|
make HAVE_MSGPACK=1
 | 
						|
make install
 |