mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
45 lines
1.4 KiB
Text
45 lines
1.4 KiB
Text
# Contributor: Andy Postnikov <apostnikov@gmail.com>
|
|
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
|
|
pkgname=php7-pecl-ssh2
|
|
_pkgreal=ssh2
|
|
pkgver=1.1.2
|
|
pkgrel=5
|
|
pkgdesc="PHP extension provide bindings for the libssh2 library - PECL"
|
|
url="https://pecl.php.net/package/ssh2"
|
|
arch="all"
|
|
license="PHP-3.01"
|
|
depends="php7-common"
|
|
makedepends="php7-dev autoconf libssh2-dev re2c"
|
|
source="$pkgname-$pkgver.tgz::https://pecl.php.net/get/$_pkgreal-$pkgver.tgz
|
|
fix-php-7x.patch
|
|
"
|
|
builddir="$srcdir/$_pkgreal-$pkgver"
|
|
provides="php7-ssh2=$pkgver-r$pkgrel" # for backward compatibility
|
|
replaces="php7-ssh2" # for backward compatibility
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
|
|
phpize7
|
|
./configure --prefix=/usr --with-php-config=php-config7
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test
|
|
# Check extension loading, testsuite skips tests if extension broken
|
|
php7 -d extension="$builddir"/modules/$_pkgreal.so --ri $_pkgreal
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
|
|
make INSTALL_ROOT="$pkgdir/" install
|
|
|
|
install -d "$pkgdir"/etc/php7/conf.d
|
|
echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php7/conf.d/$_pkgreal.ini
|
|
}
|
|
|
|
sha512sums="36793191448745b8a9b3cc628fe9fb431480792c7a2ff0bf2eccd58cda1cf944933be1d301c455d4a6f3dabf7e04ffef248bc402a8ff99bfafcba0deddb25c36 php7-pecl-ssh2-1.1.2.tgz
|
|
81a4f2b7ba7e1f5e2224b42b684110697ce824f121d686b8b95b4f2aae185f3bbc02f81c435aedb3586348909e0d458f3b5120803187f12bd4ff9048a087822b fix-php-7x.patch"
|