2022-02-05 14:23:32 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
2022-03-28 20:06:00 +00:00
|
|
|
# Copyright (C) 2022-present Fewtarius
|
2022-02-05 14:23:32 +00:00
|
|
|
|
|
|
|
PKG_NAME="imagemagick"
|
2023-03-14 21:59:38 +00:00
|
|
|
PKG_VERSION="2129847cd6b8f79ba10d2560a36b76de3311d5e6"
|
2022-02-05 14:23:32 +00:00
|
|
|
PKG_LICENSE="http://www.imagemagick.org/script/license.php"
|
2022-03-28 20:06:00 +00:00
|
|
|
PKG_SITE="https://github.com/ImageMagick/ImageMagick"
|
|
|
|
PKG_URL="${PKG_SITE}.git"
|
2022-02-05 14:23:32 +00:00
|
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
|
|
PKG_LONGDESC="Software suite to create, edit, compose, or convert bitmap images"
|
|
|
|
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-openmp \
|
|
|
|
--disable-static \
|
|
|
|
--enable-shared \
|
|
|
|
--with-pango=no \
|
|
|
|
--with-utilities=yes \
|
|
|
|
--with-x=no"
|
|
|
|
|
|
|
|
makeinstall_target() {
|
2022-03-28 20:06:00 +00:00
|
|
|
make install DESTDIR=${INSTALL} ${PKG_MAKEINSTALL_OPTS_TARGET}
|
|
|
|
rm ${INSTALL}/usr/bin/*config
|
2022-02-05 14:23:32 +00:00
|
|
|
}
|