Skip to content

Commit

Permalink
v8.22
Browse files Browse the repository at this point in the history
- CI | Shairport Sync: Fix Trixie builds as of raised libavcodec version
  • Loading branch information
MichaIng committed Sep 16, 2023
1 parent 21a6b52 commit 4d1cba6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .build/software/shairport-sync/build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,11 @@ find "$DIR" ! \( -path "$DIR/DEBIAN" -prune \) -type f -exec md5sum {} + | sed "

# - Add dependencies
adeps+=('libplist3' 'libsodium23' 'libgcrypt20')
(( $G_DISTRO > 6 )) && adeps+=('libavcodec59') || adeps+=('libavcodec58')
case $G_DISTRO in
5|6) adeps+=('libavcodec58');;
7) adeps+=('libavcodec59');;
*) adeps+=('libavcodec60');;
esac
DEPS_APT_VERSIONED=
for i in "${adeps[@]}"
do
Expand Down

0 comments on commit 4d1cba6

Please sign in to comment.