curl -s https://api.github.com/repos/DAINRA/ungoogled-chromium-void/releases/latest | grep browser_download_url | awk '{print $2}'
this will display all the assets in the latest release. Then they can be downloaded using wget.
For example
wget https://github.com/DAINRA/ungoogled-chromium-void/releases/download/110.0.5481.77_1/ungoogled-chromium-110.0.5481.77_1.x86_64.xbps
Then
xbps-rindex -a *.xbps
sudo xbps-install -vR $PWD ungoogled-chromium
will install it
curl -s https://api.github.com/repos/DAINRA/ungoogled-chromium-void/releases/latest | grep browser_download_url | awk '{print $2}'
this will display all the assets in the latest release. Then they can be downloaded using wget.For example
wget https://github.com/DAINRA/ungoogled-chromium-void/releases/download/110.0.5481.77_1/ungoogled-chromium-110.0.5481.77_1.x86_64.xbps
Then xbps-rindex -a *.xbps sudo xbps-install -vR $PWD ungoogled-chromium will install it