mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 03:53:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			275 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			275 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| set -x
 | |
| set -e
 | |
| 
 | |
| PGROONGA_VERSION="2.2.3"
 | |
| 
 | |
| cd "$(mktemp -d)"
 | |
| 
 | |
| wget 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
 |