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.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							1.0 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							1.0 KiB
						
					
					
				
								#!/bin/sh -e
							 | 
						|
								# A hacky script to generate .xbps files using satellites.
							 | 
						|
								# It's a fairly simple wrapper to astronaut, that generates xbps packages.
							 | 
						|
								
							 | 
						|
								# This may also serve as an example on how you can wrap astronaut to package in any format.
							 | 
						|
								# Sure, no dependency resolution, and the packages won't make it in any official repositories,
							 | 
						|
								#   but it isn't meant for that anyway.
							 | 
						|
								
							 | 
						|
								# Find astronaut
							 | 
						|
								_astronaut="$(dirname "$0")/astronaut"
							 | 
						|
								[ ! -f "$_astronaut" ] && _astronaut="astronaut"
							 | 
						|
								
							 | 
						|
								# Configuration
							 | 
						|
								dir_wrapper_xbps="$PWD"
							 | 
						|
								
							 | 
						|
								# Wrapper functions
							 | 
						|
								_astronaut_wrapper_pre() {
							 | 
						|
								    # Make sure to remove the contents of the install directory before building
							 | 
						|
								    _nuke_dir_install=true
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								_astronaut_wrapper_post() {
							 | 
						|
								    mkdir -p "$dir_wrapper_xbps"
							 | 
						|
								    cd "$dir_wrapper_xbps"
							 | 
						|
								
							 | 
						|
								    # Create the package
							 | 
						|
								    xbps-create --compression none -A "$(uname -m)" -n "$_satname-${version}_astro" -s "Generated with xbps-astronaut" -H "$update_url" "$dir_install"
							 | 
						|
								    xbps-rindex -f -a "$_satname-${version}_astro.$(uname -m).xbps"
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								. "$_astronaut"
							 | 
						|
								
							 |