We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd9410a commit 9b8f774Copy full SHA for 9b8f774
image/base/install-imagemagick
@@ -19,9 +19,13 @@ apt -y -q install git make gcc pkg-config autoconf curl g++ yasm cmake \
19
libltdl7-dev libbz2-dev gsfonts libtiff-dev libfreetype6-dev libjpeg-dev
20
21
if cat /etc/issue | grep -qi Debian; then
22
- # Use backports
+ # Get VERSION_CODENAME
23
. /etc/os-release
24
- apt -y -q install -t $VERSION_CODENAME-backports libaom-dev libheif1 libheif-dev
+ # Use backports
25
+ apt -y -q install \
26
+ libaom-dev/$VERSION_CODENAME-backports \
27
+ libheif1/$VERSION_CODENAME-backports \
28
+ libheif-dev/$VERSION_CODENAME-backports
29
else
30
apt -y -q install libaom-dev libheif1 libheif-dev
31
fi
0 commit comments