The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / php-ssh2 / php-ssh2.mk
1 ################################################################################
2 #
3 # php-ssh2
4 #
5 ################################################################################
6
7 PHP_SSH2_VERSION = 0.12
8 PHP_SSH2_SOURCE = ssh2-$(PHP_SSH2_VERSION).tgz
9 # pecl.php.net returns html with db connect failed
10 PHP_SSH2_SITE = http://sources.buildroot.net
11 PHP_SSH2_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
12         --with-ssh2=$(STAGING_DIR)/usr
13 # phpize does the autoconf magic
14 PHP_SSH2_DEPENDENCIES = libssh2 php host-autoconf
15 PHP_SSH2_LICENSE = PHP
16 PHP_SSH2_LICENSE_FILES = LICENSE
17
18 define PHP_SSH2_PHPIZE
19         (cd $(@D); \
20                 PHP_AUTOCONF=$(HOST_DIR)/usr/bin/autoconf \
21                 PHP_AUTOHEADER=$(HOST_DIR)/usr/bin/autoheader \
22                 $(STAGING_DIR)/usr/bin/phpize)
23 endef
24
25 PHP_SSH2_PRE_CONFIGURE_HOOKS += PHP_SSH2_PHPIZE
26
27 $(eval $(autotools-package))