bump(x11/gnome-clocks): 50.0 - #29469
Conversation
Biswa96
commented
Apr 23, 2026
- Fixes Auto update failing for gnome-clocks #28905
|
Should vorbis-tools package be added in setup-ubuntu.sh or with termux_download_ubuntu_packages in gnome-clocks/build.sh ? |
|
Please try using if [[ "$TERMUX_ON_DEVICE_BUILD" == "false" ]]; then
export PATH="$TERMUX_PKG_HOSTBUILD_DIR/ubuntu_packages/usr/bin:$PATH"
fithen, if an error occurs that you do not know any solutions to work around or resolve dependencies for, show me and I can try to fix it. |
|
It shows the following error. Adding the package in setup-ubuntu.sh seems easier and does not require those dark magic. |
|
I will create the |
|
May I ask why vorbis-tools need to be added in termux_download_ubuntu_packages instead of setup-ubuntu.sh scipt? |
|
it is because, while the package is only 2 MB, I want to avoid bloating the size of the ubuntu docker image slowly over time and causing accumulated slowdown of downloading the image in clean systems. it is a similar reason to why I avoided adding a check to check in a lot of things have already been added, and at a certain point I feel it is important to stop and try to only add things when it is really important, shared by a lot of packages to the point that it becomes better to install globally, or there is no other option. |
Install vorbis-tools package in host for oggenc program.
|
ok, that sounds reasonable. I have added the necessary packages with termux_download_ubuntu_packages. |