imagemagick, disable static libraries (#7649)

This commit is contained in:
Schrijvers Luc
2022-12-25 14:04:00 +01:00
committed by GitHub
parent e1f5448ce9
commit a34f98ba7f
2 changed files with 7 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ draw text, lines, polygons, ellipses and Bézier curves."
HOMEPAGE="https://www.imagemagick.org/"
COPYRIGHT="1999-2017 ImageMagick Studio LLC"
LICENSE="IMAGEMAGICK"
REVISION="1"
REVISION="2"
imageMagickVersion="${portVersion%.*}-${portVersion##*.}"
SOURCE_URI="https://www.imagemagick.org/download/releases/ImageMagick-$imageMagickVersion.tar.xz
https://mirror.sobukus.de/files/src/imagemagick/ImageMagick-$imageMagickVersion.tar.xz"
@@ -138,7 +138,10 @@ BUILD()
{
export LDFLAGS="-lnetwork"
autoreconf -fi
runConfigure ./configure --enable-shared --without-modules
runConfigure ./configure \
--enable-shared \
--disable-static \
--without-modules
make $jobArgs
}

View File

@@ -9,7 +9,7 @@ HOMEPAGE="https://www.imagemagick.org/
https://github.com/ImageMagick/ImageMagick/"
COPYRIGHT="1999-2020 ImageMagick Studio LLC"
LICENSE="IMAGEMAGICK"
REVISION="1"
REVISION="2"
imageMagickVersion="${portVersion%.*}-${portVersion##*.}"
SOURCE_URI="https://www.imagemagick.org/download/releases/ImageMagick-$imageMagickVersion.tar.xz
https://mirror.sobukus.de/files/src/imagemagick/ImageMagick-$imageMagickVersion.tar.xz
@@ -155,6 +155,7 @@ BUILD()
autoreconf -vfi
runConfigure ./configure \
--enable-shared \
--disable-static \
--without-modules
make $jobArgs
}