mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 21:40:15 +00:00
add all to one script with deps/build_install/install_cached actions - yml - use action @main - cache: do not depend .github/scripts/Linux/prepare.sh, just the catch-all SDL install file - build SDL,SDL_ttf without entering the dir (as fluidsynth already does)
7 lines
231 B
Bash
7 lines
231 B
Bash
# $2 - pattern to exclude; separate packates with '\|' (BRE alternation)
|
|
get_build_deps_excl() {
|
|
apt-cache showsrc "$1" | sed -n "/^Build-Depends:/\
|
|
{s/Build-Depends://;p;q}" | tr ',' '\n' | cut -f 2 -d\ | grep -v "$2"
|
|
}
|
|
|