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.
21 lines
980 B
21 lines
980 B
#!/bin/sh -e
|
|
# A hacky script to generate .xbps files using satellites.
|
|
# It's a fairly simple wrapper to astronaut, that generates a xbps package at the end.
|
|
|
|
# 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.
|
|
|
|
_topdir=$PWD
|
|
_astronaut="$(dirname "$0")/astronaut"
|
|
[ ! -f "$_astronaut" ] && _astronaut="astronaut"
|
|
|
|
_nuke_dir_install=true
|
|
|
|
. "$_astronaut"
|
|
|
|
# _dir_xbps should be set from a configuration file (e.g. ~/.astronaut.conf), and points to wherever you want your packages to be placed.
|
|
[ "$_dir_xbps" ] && mkdir -p "$_dir_xbps" && cd "$_dir_xbps" || cd "$_topdir"
|
|
xbps-create --compression none -A "$(uname -m)" -n "$_satname-${version}_astro" -s "Generated with xbps-astronaut" -H "$update_url" "$dir_install"
|
|
rm -rf "$dir_install"
|
|
xbps-rindex -f -a "$_satname-${version}_astro.$(uname -m).xbps"
|
|
|