5022410324
cpe:2.3🅰️php:imagick is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Aphp%3Aimagick Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
29 lines
900 B
Makefile
29 lines
900 B
Makefile
################################################################################
|
|
#
|
|
# php-imagick
|
|
#
|
|
################################################################################
|
|
|
|
PHP_IMAGICK_VERSION = 3.4.3
|
|
PHP_IMAGICK_SOURCE = imagick-$(PHP_IMAGICK_VERSION).tgz
|
|
PHP_IMAGICK_SITE = http://pecl.php.net/get
|
|
PHP_IMAGICK_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
|
|
--with-imagick=$(STAGING_DIR)/usr
|
|
# phpize does the autoconf magic
|
|
PHP_IMAGICK_DEPENDENCIES = imagemagick php host-autoconf
|
|
PHP_IMAGICK_LICENSE = PHP-3.01
|
|
PHP_IMAGICK_LICENSE_FILES = LICENSE
|
|
PHP_IMAGICK_CPE_ID_VENDOR = php
|
|
PHP_IMAGICK_CPE_ID_PRODUCT = imagick
|
|
|
|
define PHP_IMAGICK_PHPIZE
|
|
(cd $(@D); \
|
|
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
|
|
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
|
|
$(STAGING_DIR)/usr/bin/phpize)
|
|
endef
|
|
|
|
PHP_IMAGICK_PRE_CONFIGURE_HOOKS += PHP_IMAGICK_PHPIZE
|
|
|
|
$(eval $(autotools-package))
|