mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			179 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			179 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if [ "x${1}" == "x" ]; then
 | 
						|
    echo "Package version must be specified to generate tarball version"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
echo "${1}" > "$MESON_DIST_ROOT/.tarball-version"
 |