0f9c0bf3d5
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l '$(HOST_DIR)/usr/bin' | xargs sed -i 's%$(HOST_DIR)/usr/bin%$(HOST_DIR)/bin%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
831 B
Makefile
27 lines
831 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
|
|
|
|
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))
|