php-imagick: new package

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Gustavo Zacarias 2014-01-28 18:26:31 -03:00 committed by Peter Korsgaard
parent 555120da7c
commit 7d27ff2fe0
3 changed files with 35 additions and 0 deletions

View File

@ -397,6 +397,7 @@ source "package/php/Config.in"
if BR2_PACKAGE_PHP
if !BR2_PREFER_STATIC_LIB
menu "External php extensions"
source "package/php-imagick/Config.in"
source "package/php-ssh2/Config.in"
source "package/php-yaml/Config.in"
source "package/php-zmq/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PHP_IMAGICK
bool "php-imagick"
depends on BR2_PACKAGE_PHP
select BR2_PACKAGE_IMAGEMAGICK
help
PHP wrapper to the ImageMagick library.
http://pecl.php.net/package/imagick

View File

@ -0,0 +1,26 @@
################################################################################
#
# php-imagick
#
################################################################################
PHP_IMAGICK_VERSION = 3.1.2
PHP_IMAGICK_SOURCE = imagick-$(PHP_IMAGICK_VERSION).tgz
PHP_IMAGICK_SITE = http://pecl.php.net/get
PHP_IMAGICK_CONF_OPT = --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
PHP_IMAGICK_LICENSE_FILES = LICENSE
define PHP_IMAGICK_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/usr/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/usr/bin/autoheader \
$(STAGING_DIR)/usr/bin/phpize)
endef
PHP_IMAGICK_PRE_CONFIGURE_HOOKS += PHP_IMAGICK_PHPIZE
$(eval $(autotools-package))